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


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


SVG Element.id属性返回给定元素的ID。

用法:

var idStr = element.id; // Get the id

返回值:此属性返回ID的元素。

范例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"> 
            <circle cx='100' cy='100' r="80"></circle> 
        </a> 
        <script> 
            var g = document.getElementById('gfg'); 
            console.log(g.id) 
        </script> 
    </svg> 
</body>  
  
</html>

输出:



范例2:

HTML

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

输出:




相关用法


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