运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Document Object</h1> <h2>The images Property</h2> <img src="klematis.jpg" alt="flower" width="150" height="113"> <img src="klematis2.jpg" alt="flower" width="152" height="128"> <img src="smiley.gif" alt="Smiley face" width="42" height="42"> <p>The number of images is:</p> <p id="demo"></p> <script> let numb = document.images.length; document.getElementById("demo").innerHTML = numb; </script> </body> </html>