HTML DOM Image height 屬性

2018-08-04 20:40 更新

Image height 屬性

Image 對(duì)象參考手冊 Image 對(duì)象

定義和用法

height 屬性可設(shè)置或者返回圖片的 height 屬性值。

height 屬性指定了圖片的高度。

語法

imageObject.height=pixels


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 height 屬性


實(shí)例

實(shí)例

下面的例子可設(shè)置圖像的高度和寬度:

<html>
<head>
<script>
function changeSize()
{
document.getElementById("compman").height="250";
document.getElementById("compman").width="300";
}
</script>
</head>
<body>

<img id="compman" src="compman.gif" width="107" height="98">
<br><br>
<input type="button" onclick="changeSize()" value="Change size of image">

</body>
</html>

嘗試一下 ?


Image 對(duì)象參考手冊 Image 對(duì)象
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)