使用JavaScript中的 document.images属性来获取文档中标签的数量。
您可以尝试运行以下代码来实现JavaScript中的document.images属性。
实时演示
<!DOCTYPE html> <html> <head> <title>JavaScript Example</title> </head> <body> <h1>TutorialsPoint Tutorials</h1> <img src="/javascript/images/javascript-mini-logo.jpg"/ alt="如何在JavaScript中使用document.images?" ><br> <img src="/html5/images/html5-mini-logo.jpg"/ alt="如何在JavaScript中使用document.images?" > <script> var num = document.images.length; document.write("<br>How many images? "+num); </script> </body> </html>
以上是如何在JavaScript中使用document.images?的详细内容。更多信息请关注PHP中文网其他相关文章!