定义和用法
marginWidth 属性可设置或者返回 frame/iframe 元素中 marginWidth 属性的值。
marginwidth 属性指定了框架的左边缘和右边缘的页空白(以像素为单位)。
语法
frameObject.marginWidth=pixels
或者
iframeObject.marginWidth=pixels
或者
iframeObject.marginWidth=pixels
浏览器支持
所有主要浏览器都支持 marginWidth 属性
实例
实例
返回 marginwidth 属性的值:
<html>
<body>
<iframe id="myframe" src="demo_iframe.htm" marginheight="50" marginwidth="50">
<p>Your browser does not support iframes.</p>
</iframe>
<br><br>
<p>The value of the marginwidth attribute is:
<script>
document.write(document.getElementById("myframe").marginWidth);
</script>
<p>
</body>
</html>
<body>
<iframe id="myframe" src="demo_iframe.htm" marginheight="50" marginwidth="50">
<p>Your browser does not support iframes.</p>
</iframe>
<br><br>
<p>The value of the marginwidth attribute is:
<script>
document.write(document.getElementById("myframe").marginWidth);
</script>
<p>
</body>
</html>
尝试一下 »
Frame/IFrame 对象