|
|
|
|
|
HTMLUnwrapAllChildren (Function) In french: HTMLDésencadreTousLesFils Deletes the specified node in an HTML document without deleting its children, which take its place. hDoc is htmlDocument = "
<html>
<head/>
<body>
<h1></h1><div id="div">
<p>Texte1</p>
<p>Texte2</p>
</div><h3></h3>
</body>
</html>
"
hNoeud is htmlNode <- HTMLChercheElémentParID(hDoc, "div")
hNoeudInsertion is htmlNode
hNoeudInsertion..TagName = "h2"
HTMLWrap(hNoeud, hNoeudInsertion)
Trace(hDoc)
hNoeudInsertion..TagName = "span"
HTMLWrapAllChildren(hNoeud, hNoeudInsertion)
Trace(hDoc)
HTMLUnwrapAllChildren(hNoeud)
Trace(hDoc)
Syntax
HTMLUnwrapAllChildren(<Node>)
<Node>: htmlNode variable Name of the htmlNode variable that corresponds to the node to be removed. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|