运行 ❯
获取您自己的网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>HTML DOM Attributes</h1> <h2>The length Property</h2> <img id="myImg" alt="Flower" src="klematis.jpg" width="150" height="113"> <p>The attributes of the image are:</p> <p id="demo"></p> <script> const nodeMap = document.getElementById("myImg").attributes; let text = ""; for (let i = 0; i < nodeMap.length; i++) { text += nodeMap[i].name + " = " + nodeMap[i].value + "<br>"; } document.getElementById("demo").innerHTML = text; </script> </body> </html>