ios wkwebview弹框_iOS WKWebView不显示javascript alert()对话框

要解决这个问题,你需要一个WKUIDelegate为你的web视图。代表的职责是决定是否应该显示警报,以及以什么方式显示警报。您需要实现此警报,确认和文本输入(提示)。

以下是没有对网页网址或安全功能进行任何验证的示例代码:

- (void)webView:(WKWebView *)webView runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(void))completionHandler

{

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:message

message:nil

preferredStyle:UIAlertControllerStyleAlert];

[alertController addAction:[UIAlertAction actionWithTitle:@"OK"

style:UIAlertActionStyleCancel

handler:^(UIAlertAction *action) {

completionHandler();

}]];

[self presentViewController:alertController animated:YES completion:^{}];

}

你可能感兴趣的:(ios,wkwebview弹框)