当 UIWebView 中弹出 OK-Cancel 警报时,如何自动单击取消?

发布于 2024-09-07 21:45:17 字数 133 浏览 7 评论 0原文

我的 iPhone 应用程序的 UIWebView 出现问题...我收到一个带有“确定-取消”按钮选项的警报,我不希望用户看到这个...但网页会自动弹出发出警报。如何以编程方式检测警报已发出,以及如何单击警报上的取消按钮?

谢谢, 马特

I'm having a problem with my UIWebView for my iPhone App... I am getting an alert thrown up with OK-Cancel button options, and I don't want the user to see this... But the web page automatically pops up an alert. How can I programmatically detect the Alert was thrown up and how do I click the cancel button on the alert?

Thanks,
Matt

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

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

发布评论

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

评论(1

青芜 2024-09-14 21:45:17

在从 UIWebView 派生的类中,实现这些方法:

- (void)webView:(id)sender runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(id)frame {}
- (BOOL)webView:(id)sender runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(id)frame { return NO; }

虽然没有严格记录,但您实际上并没有调用任何内容,因此它可能会被接受。

否则,您必须在加载的页面中找到发出警报的 JavaScript 并将其删除。

In a class derived from UIWebView, implement these methods:

- (void)webView:(id)sender runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(id)frame {}
- (BOOL)webView:(id)sender runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(id)frame { return NO; }

While not strictly documented, you are not actually calling anything so it may be accepted.

Otherwise, you will have to find the javascript in the loaded page that is putting up the alert and remove it.

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