运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The getAttributeNode() Method</h2> Read about the <a id="myAnchor" href="dom_obj_attributes.asp" target="_blank">Attr object</a>. <p>Click the button to display the value of the target attribute node of the link above.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { const element = document.getElementById("myAnchor"); let text = element.getAttributeNode("target").value; document.getElementById("demo").innerHTML = text; } </script> </body> </html>