1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-06-17 00:07:55 +02:00

Feature/inner html element child (#82)

* SOme wokrd

* Renamed example

* Updated example
This commit is contained in:
Tim Voronov
2018-10-08 20:20:40 -04:00
committed by GitHub
parent 0004667df6
commit 05a7582bba
13 changed files with 322 additions and 209 deletions

View File

@ -8,9 +8,9 @@ import (
/*
* Returns inner HTML string of a matched element
* @param doc (Document) - Parent document.
* @param doc (Document|Element) - Parent document or element.
* @param selector (String) - String of CSS selector.
* @returns (String) - Inner HTML string if an element found, otherwise NONE.
* @returns (String) - Inner HTML string if an element found, otherwise empty string.
*/
func InnerHTML(_ context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 2, 2)
@ -19,7 +19,7 @@ func InnerHTML(_ context.Context, args ...core.Value) (core.Value, error) {
return values.EmptyString, err
}
err = core.ValidateType(args[0], core.HTMLDocumentType)
err = core.ValidateType(args[0], core.HTMLDocumentType, core.HTMLElementType)
if err != nil {
return values.None, err
@ -31,8 +31,8 @@ func InnerHTML(_ context.Context, args ...core.Value) (core.Value, error) {
return values.None, err
}
doc := args[0].(values.HTMLDocument)
node := args[0].(values.HTMLNode)
selector := args[1].(values.String)
return doc.InnerHTMLBySelector(selector), nil
return node.InnerHTMLBySelector(selector), nil
}