|
|
|
|
|
HTMLFindElementByTag (Function) In french: HTMLChercheElémentParBalise Searches for elements that correspond to a tag in an HTML document (or an HTML node). d is htmlDocument = HTMLOpen("https://www.windev.com", fromURL) // ... t is array of htmlNode <- HTMLFindElementByTag(d, "form")
Syntax
<Result> = HTMLFindElementByTag(<Element to handle> [, <Search element>])
<Result>: Array Array of htmlNode elements that match the search condition. <Element to handle>: htmlDocument or htmlNode variable Element where the search will be performed: <Search element>: Optional character string Name of the tag to search for. If this parameter is not specified or corresponds to an empty string (""), <Result> will contain all the elements.
Related Examples:
|
Unit examples (WINDEV): HTML types (HTMLDocument, HTMLNode, HTMLAttribute)
[ + ] This example shows how to use the HTMLXxx WLanguage types (HTMLDocument, HTMLNode, HTMLAttribute)
|
Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|