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


SVG Window.document属性用法及代码示例


SVG Window.document属性返回对该窗口中包含的文档的引用。

用法:

var object = window.document

返回值:这个性质返回对该窗口中包含的文档的引用。

范例1:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg viewBox="0 0 1000 1000" 
        xmlns="http://www.w3.org/2000/svg"> 
          
        <circle cx="200" cy="200" r="50"></circle> 
          
        <script type="text/javascript"> 
            console.log(window.document); 
        </script> 
    </svg> 
</body> 
  
</html>

输出:



范例2:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg viewBox="0 0 1000 1000" 
        xmlns="http://www.w3.org/2000/svg"> 
          
        <text x="200" y="200"> 
            GeeksforGeeks 
        </text> 
          
        <script type="text/javascript"> 
            console.log(window.document); 
        </script> 
    </svg> 
</body> 
  
</html>

输出:




相关用法


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