HTML DOM height ÊôÐÔ
¶¨ÒåºÍÓ÷¨
height ÊôÐÔ¿ÉÉèÖûò·µ»Ø 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>