html的DOM中document对象images集合用法实例
本文实例讲述了html的DOM中document对象images集合用法。分享给大家供大家参考。具体分析如下:
images集合可返回对文档中所有Image对象的引用。
语法:
document.images[]
为了与0级DOM兼容,该集合不包括由<object>标记定义的图像。
例子:
<html> <body> <imgborder="0"src="hackanm.gif"width="48"height="48"> <br/> <imgborder="0"src="compman.gif"width="107"height="98"> <br/><br/>
<scripttype="text/javascript"> document.write("Thisdocumentcontains:") document.write(document.images.length+"images.") </script> </body> </html>