このページを試してみると、if1 return 、if2 および if3 return 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>