HTML DOM width 屬性
定義和用法
width 屬性可設(shè)置或返回 iframe 的寬度(以像素或百分比為單位)。
語法
iframeObject.width=pixels
實(shí)例
下面的例子可更改 iframe 的寬度:
<html>
<head>
<script type="text/javascript">
function changeWidth()
{
document.getElementById("frame1").width="100";
}
</script>
</head>
<body>
<iframe src="frame_a.htm" id="frame1" width="200"></iframe>
<br /><br />
<input type="button" onclick="changeWidth()"
value="Change size" />
</body>
</html>