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


HTML DOMRect width用法及代碼示例


在Web API中,有一個DOMRectReadOnly接口,該接口的屬性寬度為我們提供DOMRect對象的寬度。

用法:

var recX = DOMRect.width;

返回類型:



Double value

例:獲取創建的DOMRect對象的寬度。

<!DOCTYPE html> 
<html> 
  
<head> 
  
    <title> 
        DOMRect width property 
    </title> 
  
</head> 
  
<body> 
    <center> 
  
        <h1 style="color:green;">  
                GeeksForGeeks  
            </h1> 
  
        <h2>DOMRect width property</h2> 
        <button onclick="getDOMRect ();"> 
          Get width 
      </button> 
        <p id='DOMRect'></p> 
    </center> 
  
</body> 
  
<script type="text/javascript"> 
    function getDOMRect() { 
        var myDOMRect = new DOMRect( 
          0, 0, 100, 100); 
        var recwidth = myDOMRect.width; 
  
        document.getElementById( 
          'DOMRect').innerHTML = recwidth; 
  
    } 
</script> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOMRect width屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • Safari 10.1
  • Firefox
  • Opera



相關用法


注:本文由純淨天空篩選整理自DeepakDev大神的英文原創作品 Web API | DOMRect width property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。