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.
我有一堆我在调用 setValue 的组件,除了 Android 网络浏览器和 google chrome for android 之外,所有浏览器都运行良好。有没有人看到这种行为或知道如何解决它?我不知道从哪里真正开始。
好的,您必须为 Web 视图启用 Javascipt,因为出于安全原因,android 默认禁用 JS
YourWebView.getSettings().setJavaScriptEnabled(true); YourWebView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
这应该是诀窍
如果您的应用程序具有安全数据,您可能不希望在您的应用程序中运行 JS 的 3rd 方软件
希望这可以帮助