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


SVG ownerElement属性用法及代码示例


SVG ownerElement属性返回给定Attr元素的ownerElement。

用法:

name = attribute.ownerElement

返回值:此属性返回Attr的ownerElement。

范例1:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg viewBox="0 0 100 100" 
        xmlns="http://www.w3.org/2000/svg"> 
          
        <!-- A link around a text -->
        <text id="example" x="20" y="20"> 
            Click me 
        </text> 
          
        <script> 
            const element = document 
                .querySelector("#example"); 
                  
            const attribute = element.attributes[0]; 
            console.log(attribute.ownerElement); 
        </script> 
    </svg> 
</body> 
  
</html>

输出:




范例2:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg viewBox="0 0 100 100" 
        xmlns="http://www.w3.org/2000/svg"> 
          
        <!-- A link around a shape -->
        <circle id="example" cx="20" 
            cy="20" r="15"> 
            Click me 
        </circle> 
          
        <script> 
            const element = document 
                .querySelector("#example"); 
                  
            const attribute = element.attributes[0]; 
            console.log(attribute.ownerElement); 
        </script> 
    </svg> 
</body> 
  
</html>

输出:





相关用法


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