HTML DOM marginWidth 属性

定义和用法

marginWidth 属性可设置或返回框架的左侧和右侧边缘的页面空白(以像素为单位)。

语法

  1. iframeObject.marginWidth=pixels

实例

下面的例子将返回 iframe 的左边缘和右边缘的页空白:

  1. <html>
  2. <body>
  3. <iframe src="frame_a.htm" id="frame1" marginwidth="50"></iframe>
  4. <br /><br />
  5.  
  6. <script type="text/javascript">
  7. x=document.getElementById("frame1");
  8. document.write("Left and right margins of the iframe are: ");
  9. document.write(x.marginWidth);
  10. </script>
  11.  
  12. </body>
  13. </html>