HTML DOM id 属性
定义和用法
id 属性可返回框架的 id。
语法
frameObject.id=id
实例
在我们的例子中,首先将创建包含带有两个列的框架集的 HTML 文档。每列设置为浏览器窗口的 50%:
<html> <frameset cols="50%,50%"> <frame id="leftFrame" src="frame_id.htm"> <frame id="rightFrame" src="frame_a.htm" > </frameset> </html>
HTML 文档 "frame_id.htm" 被放入第一列,而 HTML 文档 "frame_a.htm" 被放入第二列。
下面是 "frame_id.htm" 的源代码:
<html> <body> <script type="text/javascript"> x=parent.document.getElementsByTagName("frame")[0]; y=parent.document.getElementsByTagName("frame")[1]; document.write("The id for the left frame is: "); document.write(x.id
); document.write("<br />The id for the right frame is: "); document.write(y.id
); </script> </body> </html>