Maison > Article > interface Web > Attribut de chemin d'accès d'ancre HTML DOM La propriété HTML DOM Anchor pathname renvoie la partie chemin d'accès de l'URL.
L'attribut HTML DOM Anchor pathname est utilisé pour définir ou renvoyer le chemin d'accès de l'attribut href.
Ce qui suit est la syntaxe pour définir l'attribut pathname -
anchorObj.pathname = path
Ci-dessus, path est le nom de chemin de l'URL.
Ce qui suit est la syntaxe pour renvoyer l'attribut pathname -
anchorObj.pathname
Voyons maintenant un exemple d'implémentation de l'attribut pathname d'ancrage DOM -
Démonstration en direct
<!DOCTYPE html> <html> <body> <h1>Company</h1> <p><a id="mylink" hreflang="en" href="https −//abc.com/abc.html/#new">Products</a></p> <h2 id="myid"></h2> <button onclick="display1()">Display pathname</button> <button onclick="display2()">Display hreflang</button> <script> function display1() { var a = document.getElementById("mylink").pathname; document.getElementById("myid").innerHTML = a; } function display2() { var a = document.getElementById("mylink").hreflang; document.getElementById("myid").innerHTML = a; } </script> </body> </html>
Ci-dessus, cliquez sur "Afficher "Nom du chemin" pour afficher la partie du chemin-
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!