|
|
|
|
|
<htmlNode variable>.RemoveChild (Function) In french: <Variable htmlNoeud>.SupprimeFils Removes a given node in the current node of an HTML document. hDoc is htmlDocument = "
<html>
<head/>
<body>
<h1/>
<h2>
<span>
<p>Texte</p>
</span>
</h2>
</body>
</html>
"
hNoeud is htmlNode
hNoeudRecherche is array of htmlNode
hNoeudRecherche <- hDoc.ChercheElémentParBalise("body")
hNoeud <- hNoeudRecherche[1]
hNoeudRecherche <- hNoeud.ChercheElémentParBalise("h1")
hNoeudFils is htmlNode <- hNoeudRecherche[1]
hNoeud.SupprimeFils(hNoeudFils)
Syntax
<Source node>.RemoveChild(<Child to remove>)
<Source node>: htmlNode variable Name of the htmlNode variable that corresponds to the reference node for removing the child. <Child to remove>: htmlNode variable Name of the htmlNode variable that corresponds to the child node to be removed Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|