从 JavaScript 书签中关闭确认/警报对话框

发布于 2024-11-30 07:53:50 字数 123 浏览 0 评论 0原文

我想使用书签来填写表单并单击网页上的提交按钮(我无法控制网页内容)。 按下提交按钮后,会弹出一个确认框,我必须单击 OK 。最后一步打破了自动化。如何自动关闭书签 (javascript) 中的弹出窗口?

I want to use a bookmarklet to fill up a form and click the submit button on a webpage (I have no control over the webpage content).
After the submit button is pressed, there is a popup confirmation box where I have to click OK . This last step breaks the automation. How do I automatically dismiss the popup from the bookmarklet (javascript) ?

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

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

发布评论

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

评论(1

药祭#氼 2024-12-07 07:53:50

如果您的对话框是警报对话框(通常具有OKCancel按钮),您可以重写confirm()方法以始终返回true,这就是您单击“确定”时发生的情况:

window.confirm = function(){return true;};

如果您的对话框是警报对话框(通常只有一个“确定”按钮),则需要覆盖>alert() 方法不返回任何内容(undefined):

window.alert = function(){};

必须在网页调用 confirm()alert() 方法之前设置它们。

If your dialog is an alert dialog (usually, it has OK and Cancel buttons), you could override the confirm() method to always return true, which is what happens when you click OK:

window.confirm = function(){return true;};

If your dialog is an alert dialog (usually, it has only an OK button), you need to override the alert() method to just return nothing (undefined):

window.alert = function(){};

They must be set before the confirm() or alert() methods are called by the webpage.

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