在Android WebView中禁用弹出窗口和警报框
我正在使用带有javascript启用功能的webview,因为它在我的应用程序中是必需的。我的问题是,在网络视图中加载网址时,我需要避免弹出窗口,有没有办法做到这一点?
我遇到过onJsAlert()方法,但是根据androids文档
Tell the client to display a javascript alert dialog. If the client returns true, WebView will assume that the client will handle the dialog.
If the client returns false, it will continue execution.
这不是我想要的。我想避免弹出窗口和警报框(包括提示和确认),将不胜感激
谢谢!
回答:
您可以尝试覆盖警报,确认等。也许在何时允许和何时不允许警报显示上添加标记。
JavaScript:覆盖alert()
以上是 在Android WebView中禁用弹出窗口和警报框 的全部内容, 来源链接: utcz.com/qa/428925.html