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


SVG Document.doctype属性用法及代码示例


SVG Document.doctype属性返回文档的doctype。

用法:

doctype = document.doctype

返回值:此属性返回文档的文档类型。

例:

HTML

<!DOCTYPE html>  
<html>  
  
<body>  
    <svg width="350" height="500" 
        xmlns="http://www.w3.org/2000/svg"> 
  
        <script> 
            console.log(document.doctype) 
        </script> 
    </svg> 
</body> 
  
</html> 

输出:

相关用法


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