标签: javascript android cordova webview android-webview
此link显示了如何将JavaScript代码注入Android中的WebView对象。但是,当页面加载完毕后,它只能通过onPageFinished(webView,url)使用一次。
WebView
onPageFinished(webView,url)
是否有办法(如何?)在必要时“永久”保持“注射”能力?
答案 0 :(得分:4)
我用:
mWebView.loadUrl("javascript:alert('hello')");