HTML DOM align 屬性
定義和用法
align 屬性可設(shè)置或返回如何根據(jù)周?chē)奈谋緛?lái)排列 iframe。
語(yǔ)法
iframeObject.align=left|right|top|middle|bottom
實(shí)例
下面的例子將把 iframe 根據(jù)環(huán)繞文本排列到右側(cè):
<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>