运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The getAttributeNode() Method</h2> <p>Click the button to display the value of the onclick attribute node of the button element.</p> <button id="myBtn" onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { var elmnt = document.getElementById("myBtn"); var attr = elmnt.getAttributeNode("onclick").value; document.getElementById("demo").innerHTML = attr; } </script> </body> </html>