如何使用 JavaScript 返回文档中的图片数量?
要返回文档中的图像数量,请使用 JavaScript 中的 images 属性。
示例
你可以尝试运行以下代码来获取图像数量 −
<!DOCTYPE html> <html> <body> <img src="https://tutorialspoint.com/html5/images/html5-mini-logo.jpg"> <img src="https://tutorialspoint.com/hive/images/hive-mini-logo.jpg"> <img src="https://tutorialspoint.com/sas/images/sas-mini-logo.jpg"> <img src="https://tutorialspoint.com/maven/images/maven-mini-logo.jpg"> <script> var val = document.images.length; document.write("<br>Number of images in the document: "+val); </script> </body> </html>
广告