HTML DOM中的DOM對象寬度屬性用於設置或返回對象的寬度。 width屬性用於指定對象的寬度。
用法:
- 它返回width屬性。
objObject.width
- 用於設置width屬性。
objObject.width = pixels
屬性值:它包含值,即pixel,以像素為單位指定對象的寬度。
返回值:它返回一個數值,以像素為單位表示對象的寬度。
示例1:本示例返回widt屬性。
<!DOCTYPE html>
<html>
<body>
<center>
<object id="myobject"
width="400"
data=
"https://media.geeksforgeeks.org/wp-content/uploads/geek-8.png">
</object>
<h2>
DOM Object width Property
</h2>
<p>
Click the button to get
the width of the embedded file.
</p>
<button onclick="Geeks()">
Click it
</button>
<p id="gfg"
style="color:green;
font-size:25px;">
</p>
</center>
<script>
function Geeks() {
// Accessing Object element.
var x =
document.getElementById(
"myobject").width;
document.getElementById(
"gfg").innerHTML = x;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例設置width屬性。
<!DOCTYPE html>
<html>
<body>
<center>
<object id="myobject"
width="400"
data=
"https://media.geeksforgeeks.org/wp-content/uploads/geek-8.png">
</object>
<h2>
DOM Object width Property
</h2>
<p>
Click the button to get
the width of the embedded file.
</p>
<button onclick="Geeks()">
Click it
</button>
<p id="gfg"
style="color:green;
font-size:25px;">
</p>
</center>
<script>
function Geeks() {
// Accessing Object element.
var x =
document.getElementById(
"myobject").width = "500";
document.getElementById(
"gfg").innerHTML =
"The value of the width "+
"attribute was changed to " + x;
}
</script>
</body>
</html>
輸出:
單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:
- 穀歌瀏覽器
- 火狐瀏覽器
- Edge
- Safari
- Opera
相關用法
- HTML <object> width屬性用法及代碼示例
- HTML HR width用法及代碼示例
- HTML Table width用法及代碼示例
- HTML IFrame width用法及代碼示例
- HTML Style width用法及代碼示例
- HTML Video width用法及代碼示例
- HTML Screen width用法及代碼示例
- HTML embed width用法及代碼示例
- HTML Input Image width用法及代碼示例
- HTML Object name用法及代碼示例
- HTML Object data用法及代碼示例
- HTML Object form用法及代碼示例
- HTML Object Height用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Object width Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。