|
|
|
|
|
<Variable htmlNoeud>.SupprimeAttribut (Fonction) En anglais : <htmlNode variable>.RemoveAttribute Supprime un attribut donné hDoc est un htmlDocument = " <html> <head/> <body> <h2><span> <p>Texte</p> </span></h2><h3><div></div><span></span></h3> </body> </html> "  hNoeud est un htmlNoeud  hNoeudRecherche est un tableau de htmlNoeuds <- hDoc.ChercheElémentParBalise("h3") hNoeud <- hNoeudRecherche[1] hNoeud.ModifieAttribut("id") // body : <h2><span><p>Texte</p></span></h2><h3 id><div></div><span></span></h3> hNoeud.ModifieAttribut("id", "h3") // body : <h2><span><p>Texte</p></span></h2><h3 id="h3"><div></div><span></span></h3> hNoeud.SupprimeAttribut("id") // body : <h2><span><p>Texte</p></span></h2><h3><div></div><span></span></h3> Syntaxe
<Noeud source>.SupprimeAttribut(<Attribut>)
<Noeud source> : Variable de type htmlNoeud Nom de la variable de type htmlNoeud correspondant au noeud de référence pour la suppression de l'attribut. <Attribut> : Variable de type htmlAttribut ou chaîne de caractères Attribut à supprimer. Cet attribut peut correspondre : - à une variable de type htmlAttribut.
- à une chaîne de caractères correspondant à l'attribut à supprimer.
Classification Métier / UI : Code métier Composante : wd300html.dll
Documentation également disponible pour…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|