HTML DOM marginWidth ÊôÐÔ
¶¨ÒåºÍÓ÷¨
marginWidth ÊôÐÔ¿ÉÉèÖûò·µ»Ø¿ò¼ÜµÄ×ó²àºÍÓÒ²à±ßÔµµÄÒ³Ãæ¿Õ°×£¨ÒÔÏñËØÎªµ¥Î»£©¡£
Óï·¨
iframeObject.marginWidth=pixels
ʵÀý
ÏÂÃæµÄÀý×Ó½«·µ»Ø iframe µÄ×ó±ßÔµºÍÓÒ±ßÔµµÄÒ³¿Õ°×£º
<html>
<body>
<iframe src="frame_a.htm" id="frame1" marginwidth="50"></iframe>
<br /><br />
<script type="text/javascript">
x=document.getElementById("frame1");
document.write("Left and right margins of the iframe are: ");
document.write(x.marginWidth
);
</script>
</body>
</html>