Jquery Not Loading ReactNative WebView In Android [closed]

百般思念 提交于 2019-12-25 09:28:21

问题


In my project i am using ReactNative WebView.My WebView Page Contain Lots of jquery Functions When i link That Page Only Designs are Displayed in Mobile, Functionalities are Not Working Properly.


回答1:


Did you linked to the CDN of Jquery maybe? because you need to have it local and load it by this methode:

<script src="assets/js/jquery-3.2.0.min.js"></script>

and did you do this in your mainActivity.java?

view.getSettings().setJavaScriptEnabled(true);


来源:https://stackoverflow.com/questions/44919864/jquery-not-loading-reactnative-webview-in-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!