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


SVG Element.attributes属性用法及代码示例


SVG Element.attributes属性返回包含给定元素的所有属性的对象。

用法:

var attr = element.attributes

返回值:此属性返回一个包含元素所有属性的对象。

范例1:

HTML

<!DOCTYPE html>  
<html>  
  
<body>  
    <svg width="350" height="350" 
        xmlns="http://www.w3.org/2000/svg"> 
        <a href="https://www.geeksforgeeks.org" id="gfg"> 
           <text x='100' y='100'>GfG</text> 
        </a> 
        <script> 
           var g = document.getElementById('gfg'); 
           console.log(g.attributes) 
        </script> 
    </svg> 
</body>  
  
</html>

输出:



范例2:

HTML

<!DOCTYPE html>  
<html>  
  
<body>  
    <svg width="350" height="350" 
         xmlns="http://www.w3.org/2000/svg"> 
        <a href="https://www.geeksforgeeks.org" id="gfg"> 
            <circle cx='100' cy='100' r="80"></circle> 
        </a> 
        <script> 
            var g = document.getElementById('gfg'); 
            console.log(g.attributes) 
        </script> 
    </svg> 
</body>  
  
</html>

输出:




相关用法


注:本文由纯净天空筛选整理自taran910大神的英文原创作品 SVG Element.attributes Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。