运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <h1>HTML DOM Attributes</h1> <h2>The item() Method</h2> <div id="myDiv" style="background-color:red;width:50px;height:50px"></div> <p id="demo"></p> <script> const nodeMap = document.getElementById("myDiv").attributes; let name1 = nodeMap.item(0).name; let name2 = nodeMap.item(1).name; document.getElementById("demo").innerHTML = "First attribute is: " + name1 + "<br>Second is: " + name2; </script> </body> </html>