“阻止此页面创建其他对话框”是什么意思?意思是 ?我现在该怎么办?

发布于 2024-11-18 12:32:40 字数 270 浏览 2 评论 0原文

我刚刚在 example.js 文件中发出了 2 个警报

alert("test-javascript1");
Alert("test-javascript2");

我的文件

和第二个警报框中没有其他内容,我收到此消息 阻止此页面创建其他对话框

我的问题是为什么此消息出现在第二个警报框,我应该做什么?我应该点击那个复选框吗?

阻止此页面创建额外的对话框 java 脚本

I just made 2 alert in my example.js file

alert("test-javascript1");
alert("test-javascript2");

nothing else in my file

and in my second alert box I got this message prevent this page from creating additional dialogs

my question is why this message appears in second alert box and what should i do? should i click on that check box?

prevent this page from creating additional dialogs java script

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

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

发布评论

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

评论(4

厌倦 2024-11-25 12:32:40

这是浏览器的一个功能,可以帮助用户摆脱烦人的网站。如果您点击它,警报仍然会被触发,但您不会看到它们(如果您是开发人员,这不是您所需要的)。

That is a browser thing to help users get rid of annoying sites. If you click on that, alerts will still be fired, but you won't see them (which is not what you need if you are the developer).

も星光 2024-11-25 12:32:40

以下步骤向您展示如何禁用此 Firefox 功能:

  1. 启动 Firefox,然后在网址栏中键入 about:config。 Firefox 将显示首选项屏幕。请注意不要随意更改。

  2. 右键单击首选项区域,然后选择新建 >弹出菜单中的整数。

  3. 在现在出现的对话框中,输入 dom.successive_dialog_time_limit,后跟值 0(零)。按“确定”。

当您返回 Promasys WebCRF 时,多次打开同一对话框时将不再出现此消息。

The following steps show you how disable this Firefox feature:

  1. Start Firefox, and type about:config in the url bar. Firefox will show the preferences screen. Please take care not to make changes at random.

  2. Right click in the preferences area, and choose New > Integer from the popup menu.

  3. In the dialog box that now appears, enter dom.successive_dialog_time_limit, followed by the value 0 (zero). Press OK.

When you return to the Promasys WebCRF, this message will no longer appear when opening the same dialog box more than once.

失而复得 2024-11-25 12:32:40

此警报与您的代码无关(除了您的 alert 调用触发它的事实之外),它是某些浏览器中防止“失控”警报的功能(因为它们是模态的) 。

This alert has nothing to do with your code (apart from the fact that your alert calls triggered it), it's functionality found in some browsers to prevent "run-away" alerts (because they're modal).

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