停止所有 JavaScript 执行

发布于 2024-11-02 14:13:31 字数 186 浏览 2 评论 0原文

是否有一个相当于 php die() 函数的 javascript 可以停止所有 javascript(包括将来的 ajax 请求回调、超时等...)运行?

(注意:我无法在调试器中使用断点,因为 bug 存在于 ie8 中,并且调试器会阻止您在断点处向上/向下滚动页面;为了能够查看 bug 发生的时间点,我需要能够在代码停止时滚动页面)

Is there an equivalent to the php die() function for javascript that stops all javascript (including future callbacks for ajax requests, timeouts etc...) from running?

(NOTE: I can't use breakpoints in the debugger as the bug is in ie8 and the debugger prevents you from scrolling up/down the page while at a breakpoint; to be able to see at which point the bug is occurring I need to be able to scroll the page while the code is stopped)

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

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

发布评论

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

评论(3

帅冕 2024-11-09 14:13:31

是的,这是可以做到的。这将结束 javascript 的执行。

抛出新的错误('');

Yes, it can be done. This will end execution of the javascript.

throw new Error('');

柏林苍穹下 2024-11-09 14:13:31

是否有一个相当于 php die() 函数的 javascript 函数可以停止所有 javascript(包括未来对 ajax 请求的回调、超时等...)的运行?

不,

真的,我要说的就是这些。

Is there an equivalent to the php die() function for javascript that stops all javascript (including future callbacks for ajax requests, timeouts etc...) from running?

No.

That's all there is to say, really.

半世晨晓 2024-11-09 14:13:31
debugger;

在控制台中暂停执行(至少在 Chrome 中)

debugger;

in console to pause execution (at least in chrome)

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