HTML DOM align ÊôÐÔ
¶¨ÒåºÍÓ÷¨
align ÊôÐÔ¿ÉÉèÖûò·µ»ØÈçºÎ¸ù¾ÝÖÜΧµÄÎı¾À´ÅÅÁÐ iframe¡£
Óï·¨
iframeObject.align=left|right|top|middle|bottom
ʵÀý
ÏÂÃæµÄÀý×Ó½«°Ñ iframe ¸ù¾Ý»·ÈÆÎı¾ÅÅÁе½ÓҲࣺ
<html>
<body>
<iframe src="frame_a.htm" id="frame1"></iframe>
<p>Some text. Some text. Some text. Some text.</p>
<script type="text/javascript">
document.getElementById("frame1").align="right";
</script>
</body>
</html>