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>