我试试这个页面,只有 if1 返回,if2 和 if3 返回 null,为什么?下面是 html 代码,谢谢。(小提琴)
<html>
<head>
<title> New Document </title>
<script type="text/javascript">
<!--
function dotest() {
alert(document.getElementById("if1"));
alert(document.getElementById("if2"));
alert(document.getElementById("if3"));
}
//-->
</script>
</head>
<body>
<input type="button" value="Test Test" onclick="dotest()">
<iframe id="if1"/>
<iframe id="if2"/>
<iframe id="if3"/>
</body>
</html>