当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。