Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含两个 WebView 的应用程序。一个显示本地 HTML 内容,另一个显示远程 HTML 内容。
远程 HTML 是否可以访问本地 JavaScript?欢迎任何想法。谢谢。
首先设置 webview.getSettings().setJavaScriptEnabled(true);
然后您可以像这样访问您的功能:
webview.loadUrl("javascript:nameOfFunction()");