HTML DOM marginHeight 属性
定义和用法
marginHeight 属性可设置或返回框架顶部和底部的页面空白(以像素计)。
语法
iframeObject.marginHeight=pixels
实例
下面的例子可返回 iframe 顶部和底部的页面空白:
<html>
<body>
<iframe src="frame_a.htm" id="frame1" marginheight="50"></iframe>
<br />
<script type="text/javascript">
x=document.getElementById("frame1");
document.write("Top and bottom margins of the iframe are: ");
document.write(x.marginHeight);
</script>
</body>
</html>