當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。