http://stackoverflow.com/questions/3479833/is-it-possible-to-get-the-html-code-from-webview
有很多链接可以从 webview 获取 html 代码,但需要对其进行操作,然后再次将其加载回来。是否可以这样做。如果可以,请提供一些想法。我对java脚本没有太多想法。
http://stackoverflow.com/questions/3479833/is-it-possible-to-get-the-html-code-from-webview
有很多链接可以从 webview 获取 html 代码,但需要对其进行操作,然后再次将其加载回来。是否可以这样做。如果可以,请提供一些想法。我对java脚本没有太多想法。
您可以从 HTML 字符串加载:
String summary = "<html><body>You scored <b>192</b> points.</body></html>";
webview.loadData(summary, "text/html", null);
知道了:
webview.loadUrl("javascript:document.getElementById(\"N\").value = 'dfdfdfd';"+
"document.getElementById(\"Pass\").value = 'fdfdfde'");
其中“N”和“Pass”是 html 中的控件名称
我已经在 onPageFinished() 中完成了。