是否可以构建一个可以打破警报循环的 Firefox 插件?
有几次我遇到了脚本以高速率发出警报的情况。 当警报模式窗口打开时,您无法在浏览器中执行任何其他操作。 我正在寻求开发一个附加组件,使我能够杀死或挂起警报模式窗口所属的“线程”。
我应该朝什么方向看?
Several times I got into conditions my scripts threw alerts in high rates. While there is an alert modal window open, you can't do any other action in the browser. I am looking to develop an add-on that will enable me to kill or suspend the "thread" the alert modal window belongs to.
In What direction should I look?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用alert(); 出于调试目的,也许可以寻找记录器?
如果您可能使用 Firebug for Firefox(在我看来您应该这样做),您可以使用 console.log() 或 .debug() 方法直接登录到 Firebug 控制台。
If you're using alert(); for debugging purposes maybe look for a logger instead?
If you perhaps use Firebug for Firefox (which you should imo) you can make use of the console.log() or .debug() methods to log directly to the Firebug console.
也许这有帮助?
如何在按确定后停止显示 javascript 警报
Maybe this could help?
How to stop javascript alert from showing after pressing ok