案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<iframe src="/example/hdom/frame_a.html" id="frame1"></iframe>
5
<br /><br />
6
7
<script type="text/javascript">
8
document.write("The iframe's id: ");
9
document.write(document.getElementsByTagName("iframe")[0].id);
10
document.write("<br /><br />");
11
document.write("An alternate way: ");
12
document.write("<br />");
13
document.write("The iframe's id: ");
14
document.write(document.getElementById("frame1").id);
15
</script>
16
17
</body>
18
</html>
19