HTML中的images集合属性用于返回文档中<img>元素的集合。它可以用于使用<img>标签了解插入文档中的图像数量。类型= image的<input>元素不在image属性中。
用法:
document.images
属性:它返回集合中<img>元素的数量。
方法:DOM图像集合包含以下三种方法:
- [index]:用于返回选定索引的元素。索引值以0开头。如果索引值超出范围,则返回NULL。
- item(index):它用于返回所选索引的<img>元素。索引值以0开头。如果索引值超出范围,则返回NULL。
- namedItem(id):它用于从具有给定id属性的集合中返回<img>元素。如果ID无效,则返回NULL。
以下程序说明了HTML中的document.image属性:
范例1:使用length属性返回集合中<img>元素的数量。
<!DOCTYPE html>
<html>
<head>
<title>
DOM document.image() Property
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>DOM document.image Property</h2>
<img src="home.png" alt="homepage"
width="150" height="150">
<img src="internships.png" alt="internships"
width="150" height="150">
<img src="coding.png" alt="Coding Practice time"
width="150" height="150">
<p>
For displaying the image count, double
click the "View Image Count" button:
</p>
<button ondblclick="myImage()">
View Image Count
</button>
<p id="image"></p>
<script>
function myImage() {
var i = document.images.length;
document.getElementById("image").innerHTML = i;
}
</script>
</body>
</html>
输出:
范例2:使用URL属性返回集合中第一个<img>元素的URL。
<!DOCTYPE html>
<html>
<head>
<title>
DOM document.image() Property
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>DOM document.image Property</h2>
<img src="home.png" alt="homepage"
width="150" height="150">
<img src="internships.png" alt="internships"
width="150" height="150">
<img src="coding.png" alt="Coding Practice time"
width="150" height="150">
<p>
For displaying the URL of the first image,
double click the "View Image URL" button:
</p>
<button ondblclick="myImage()">
View Image URL
</button>
<p id="image"></p>
<script>
function myImage() {
var i = document.images[0].src;
document.getElementById("image").innerHTML = i;
}
</script>
</body>
</html>
输出:
单击按钮后:
范例3:使用nameditem属性返回集合中<img>元素的URL。
<!DOCTYPE html>
<html>
<head>
<title>
DOM document.image() Property
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>DOM document.image Property</h2>
<img src="home.png" alt="homepage"
width="150" height="150">
<img src="internships.png" alt="internships"
width="150" height="150">
<img id="coding.png" src="coding.png" width="150"
height="150" alt="Coding Practice time">
<p>
For displaying the URL of the image having id="coding.png",
double click the "View Image URL" button:
</p>
<button ondblclick="myImage()">View Image URL</button>
<p id="image"></p>
<script>
function myImage() {
var i = document.images.namedItem("coding.png").src;
document.getElementById("image").innerHTML = i;
}
</script>
</body>
</html>
输出:
单击按钮后:
支持的浏览器:DOM图像收集属性支持的浏览器如下:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM images Collection Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。