欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM height 屬性

定義和用法

height 屬性可設(shè)置或返回 iframe 的高度(以像素或百分比為單位)。

語法

iframeObject.height=pixels

實例

下面的例子可更改 iframe 的高度:

<html>
<head>
<script type="text/javascript">
function changeHeight()
  {
  document.getElementById("frame1").height="200";
  }
</script>
</head>
<body>

<iframe src="frame_a.htm" id="frame1" height="100"></iframe>
<br /><br />

<input type="button" onclick="changeHeight()"
value="Change height" />

</body>
</html>