在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
相關用法
- HTML DOMRect top用法及代碼示例
- HTML DOMRect right用法及代碼示例
- HTML DOMRect height用法及代碼示例
- HTML DOMRect fromRect用法及代碼示例
- HTML DOMRect left用法及代碼示例
- HTML DOMRect bottom用法及代碼示例
- CSS max-width用法及代碼示例
- CSS min-width用法及代碼示例
- CSS column-width用法及代碼示例
- HTML HR width用法及代碼示例
- CSS border-top-width用法及代碼示例
- CSS border-right-width用法及代碼示例
- CSS stroke-width用法及代碼示例
注:本文由純淨天空篩選整理自DeepakDev大神的英文原創作品 Web API | DOMRect width property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。