<html>
<script type="text/javascript">
function func() {
alert(document.getElementById('iView').contentDocument);
}
</script>
<body>
<iframe id="iView" style="width:200px;height:200px;"></iframe>
<a href="#" onclick="func();">click</a>
</body>
</html>
クリック後、Firefox は [object HTMLDocument] を返します。Internet Explorer は undefined を返します。
Internet Explorer で iView 要素を選択するにはどうすればよいですか? ありがとう。