运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 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 number of attributes of the image are:</p> <p id="demo"></p> <script> let num = document.getElementById("myImg").attributes.length; document.getElementById("demo").innerHTML = num; </script> </body> </html>