本文主要是介绍android 调用js webView网页,点击提交按钮无效(注意加上setWebChromeClient()),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
// 如果不设置这个,JS代码中的按钮会显示,但是按下去却不弹出对话框// Sets the chrome handler. This is an implementation of WebChromeClient// for use in handling JavaScript dialogs, favicons, titles, and the// progress. This will replace the current handler.myWebView.setWebChromeClient(new WebChromeClient(){@Overridepublic boolean onJsAlert(WebView view, String url, String message,JsResult result){// TODO Auto-generated method stubreturn super.onJsAlert(view, url, message, result);}});
这篇关于android 调用js webView网页,点击提交按钮无效(注意加上setWebChromeClient())的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!