當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Images Collection屬性用法及代碼示例


HTML DOM 圖像集合屬性返回 HTML 文檔中所有 <img> HTML 元素的集合。

用法

以下是語法 -

document.images

特性

以下是 DOM 圖像集合的屬性 -

屬性
解釋
length
它返回 HTML 文檔中 <img> HTML 元素的數量。

方法

以下是DOM圖片收集的方法

方法
解釋
[ index ]
它從集合中返回指定索引的 <img> 元素
item(index)
它從集合中返回指定的索引 <img> 元素。
namedItem(id)
它從集合中返回指定的 id <img> 元素。

示例

讓我們看一個 DOM 圖像集合屬性的例子 -

<!DOCTYPE html>
<html>
<head>
<style>
   body{
      text-align:center;
   }
   .btn{
      background-color:lightblue;
      border:none;
      height:2rem;
      border-radius:50px;
      width:60%;
      margin:1rem auto;
      display:block;
   }
   .show{
      color:#db133a;
      font-size:2rem;
      font-weight:bold;
   }
</style>
</head>
<body>
<h1>DOM Image Object Example</h1>
<img src="https://www.tutorialspoint.com/spring/images/spring-mini-logo.jpg"
alt="Learn Spring">
<img src="https://www.tutorialspoint.com/hibernate/images/hibernate-mini-logo.jpg"
alt="Learn Hibernate">
<img src="https://www.tutorialspoint.com/sql/images/sql-mini-logo.jpg" alt="Learn
SQL">
<img src="https://www.tutorialspoint.com/plsql/images/plsql-mini-logo.jpg" alt="Learn
PL/SQL">
<button onclick="getCount()" class="btn">Count Number Of Images</button>
<div class="show"></div>
<script>
   function getCount() {
      document.querySelector('.show').innerHTML=document.images.length;
   }
</script>
</body>
</html>

輸出

這將產生以下輸出 -

點擊 ”Count Number Of Images” 按鈕獲取此網頁上的圖像總數 -

相關用法


注:本文由純淨天空篩選整理自Karthikeya Boyini大神的英文原創作品 HTML DOM Images Collection Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。