欢迎访问服务器技术网-www.fuwuqijishu.com

HTML DOM images 集合

JavaScript fuwuqijishu 2年前 (2022-09-04) 14次浏览 0个评论 扫描二维码
文章目录[隐藏]

HTML DOM images 集合

Document 对象


定义和用法

images 集合返回当前文档中所有图片的数组。

语法

document.images[].property


浏览器支持

所有主要浏览器都支持 images 集合


实例

实例 1

返回文档的图片数:

<html>
<body>

<img border=”0″ src=”klematis.jpg” width=”150″ height=”113″>
<img border=”0″ src=”klematis2.jpg” width=”152″ height=”128″>

<p>图像数目:
<script>
document.write(document.images.length);
</script></p>

</body>
</html>

以上实例输出结果:

图像数目: 2

实例 2

返回文档中的第一张图片:

<html>
<body>

<img id=”runoob1″ border=”0″ src=”klematis.jpg” width=”150″ height=”113″>
<img id=”runoob2″ border=”0″ src=”klematis2.jpg” width=”152″ height=”128″>

<p>第一个图像的ID:
<script>
document.write(document.images[0].id);
</script></p>

</body>
</html>

以上实例输出结果:

第一个图像的ID:runoob1


Document 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2311.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900