JavaScript 参考手册
Frame/IFrame marginHeight 属性
返回 marginheight 属性的
源代码:
点击运行 »
<iframe id="myframe" src="/examples/demo_iframe.htm" marginheight="50" marginwidth="50"> <p>你的浏览器不支持iframes。</p> </iframe> <br><br> <p>marginheight属性的值为: <script> document.write(document.getElementById("myframe").marginHeight); </script> <p>
运行结果:
点击运行 »