IE 仅在按 F12 后才运行 JavaScript

发布于 2024-12-07 10:20:14 字数 168 浏览 2 评论 0原文

我在使用 JavaScript 的 Internet Explorer 中遇到了一个奇怪的问题。在我进行测试的每个浏览器中,JavaScript 均已启用,但它似乎仅在我按 F12 后才运行,并在调试模式下运行它。更令人困惑的是,启动 IE 调试器后,一切都按预期工作。

有什么想法吗?

I have a strange problem in Internet Explorer with JavaScript. In every browser I did the test the JavaScript is enabled, but it seems to run only after I press the F12, running it in debug mode. And what is more confusing, after starting the IE debugger everything is working as suppose to.

Any ideas what it could be?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素衣风尘叹 2024-12-14 10:20:14

如果您在调用:

console.log('...some text here...');

或控制台的任何相关方法时未检查 window.console 是否存在,则脚本将默默失败。打开控制台会导致 window.console 存在,这允许脚本继续执行。

在调用 console 之前添加 "window.console && "

window.console && console.log('works');

If you're calling:

console.log('...some text here...');

or any related method of console without having checked if window.console exists, the script will fail silently. Opening the console leads to window.console existing, which allows the script to continue execution.

Add "window.console && " before your calls to console:

window.console && console.log('works');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文