HTML DOM images 集合

定义和用法

images 集合可返回对文档中所有 Image 对象的引用。

语法

  1. document.images[]

提示和注释

注释:为了与 0 级 DOM 兼容,该集合不包括由 <object> 标记定义的图像。

实例

  1. <html>
  2.  
  3. <body>
  4. <img border="0" src="hackanm.gif" width="48" height="48">
  5. <br />
  6. <img border="0" src="compman.gif" width="107" height="98">
  7. <br /><br />
  8.  
  9. <script type="text/javascript">
  10. document.write("This document contains: ")
  11. document.write(document.images.length + " images.")
  12. </script>
  13. </body>
  14.  
  15. </html>