6
console.log(document.activeElement);

此代码位于 iframe 中,当打开包含此 iframe 的页面时,在 IE 8/9 标准模式下显示“SCRIPT16389:未指定错误”。在怪癖模式下打开时没有问题。我对此一无所知,我已经搜索过IE是否支持document.activeElement,它指定为> IE4是支持的。

4

3 回答 3

6

如果对您有帮助,请检查以下给出的链接..
Link

于 2013-01-21T13:21:27.667 回答
6

如果您有 jquery,请尝试以下解决方法:

<script>
         jQuery(function () { document.documentElement.focus(); });
    </script>
于 2013-02-04T02:57:21.607 回答
0

尝试添加标题

X-Frame-Options: SAMEORIGIN

为我工作,无需更改我的 javascript 代码。

于 2016-11-07T08:58:14.407 回答