|
|
|
|
|
HTMLInsertLastChild (Function) In french: HTMLInsèreDernierFils Adds a child after the child of the current node in an HTML document. hDoc is htmlDocument = "
<html>
<head/>
<body>
<h2><span>
<p>Texte</p>
</span></h2><h3></h3>
</body>
</html>
"
hNoeud is htmlNode
hNoeudInsertion is htmlNode
hNoeudRecherche is array of htmlNode <- HTMLChercheElémentParBalise(hDoc, "h3")
hNoeud <- hNoeudRecherche[1]
hNoeudInsertion..TagName = "div"
HTMLInsertFirstChild(hNoeud, hNoeudInsertion)
hNoeudInsertion..TagName = "span"
HTMLInsertLastChild(hNoeud, hNoeudInsertion)
Trace(hDoc)
Syntax
HTMLInsertLastChild(<Source node> , <Node to insert>)
<Source node>: htmlNode variable Name of the htmlNode variable that corresponds to the insert reference node. <Node to insert>: htmlNode variable Name of the htmlNode variable that corresponds to the child node to be inserted after the last child of <Source node>. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|