运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <style> .democlass { color: red; } </style> <body> <h1 class="democlass">The Element Object</h1> <h2>The getAttributeNode() Method</h2> <p>The value of the class attribute node of the first h1 element is:</p> <p id="demo"></p> <script> const element = document.getElementsByTagName("H1")[0]; const attr = element.getAttributeNode("class"); document.getElementById("demo").innerHTML = attr.value; </script> </body> </html>