<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 返回未定义。
如何使用 Internet Explorer 选择 iView 元素?谢谢。