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


SVG Document.image屬性用法及代碼示例


SVG Document.image屬性返回當前HTML文檔中的圖像集合。

用法:

var imageCollection = document.images

返回值:此屬性返回當前HTML文檔中的圖像集合。

例:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <img src="https://media.geeksforgeeks.org/wp-content/ 
        cdn-uploads/20200817185016/gfg_complete_logo_2x-min.png"> 
  
    <svg width="700" height="500" 
        xmlns="http://www.w3.org/2000/svg"> 
          
        <script> 
            console.log(document.images);     
        </script> 
    </svg> 
</body> 
  
</html>

輸出:

相關用法


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