UIWebView:我可以在任何网页中禁用 javascript alert() 吗?

UIWebView: Can I disable the javascript alert() inside any web page?(UIWebView:我可以在任何网页中禁用 javascript alert() 吗?)
本文介绍了UIWebView:我可以在任何网页中禁用 javascript alert() 吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 UIWebView 加载 URL.

I am using UIWebView to load a URL.

在该 URL 的页面内,它使用 alert("whatever msg") 作为 JavaScript.我的 UIWebView 将弹出一个窗口并显示该警报消息.

Inside the page of that URL, it uses alert("whatever msg") as JavaScript. My UIWebView will pop up a window and show that alert message.

有没有办法禁用这种弹出窗口或 JavaScript 警告窗口?

Is there a way to disable this kind of popup window or JavaScript alert window?

推荐答案

在你的 web view 加载了它的内容之后添加这个

Add this after your web view has loaded its content

[MyWebView stringByEvaluatingJavaScriptFromString:@"window.alert=null;"];

这篇关于UIWebView:我可以在任何网页中禁用 javascript alert() 吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)