html的DOM中document对象images集合用法实例

这篇文章主要介绍了html的DOM中document对象images集合用法,实例分析了images集合的语法与使用技巧,需要的朋友可以参考下

本文实例讲述了html的DOM中document对象images集合用法。分享给大家供大家参考。具体分析如下:

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

语法:

复制代码 代码如下:

document.images[]


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

例子:

复制代码 代码如下:

<html>
<body>
<img src="https://www.jb51.net/hackanm.gif">
<br />
<img src="https://www.jb51.net/compman.gif">
<br /><br />

<script type="text/javascript">
document.write("This document contains: ")
document.write(document.images.length + " images.")
</script>
</body>
</html>

希望本文所述对大家的javascript程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgxwws.html