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


SVG ScriptElement.type属性用法及代码示例


SVG ScriptElement.type属性返回与给定脚本元素的属性相对应的SVGAnimatedLength对象。

用法:

ScriptElement.type

返回值:此属性返回SVGAnimatedLength对象,该对象可用于获取脚本元素的类型。

范例1:

HTML



<!DOCTYPE html>  
<html>  
  
<body>  
    <script type="text/javascript"> 
        console.log('GeeksforGeeks') 
    </script> 
</body>  
  
</html>

输出:

范例2:

HTML

<!DOCTYPE html>  
<html>  
  
<body>  
    <script type="text/ecmascript"> 
        document.write('GeeksforGeeks') 
    </script> 
</body>  
  
</html>

输出:

相关用法


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