Android WebView无法正常显示jquery-fullpage页面

时间:2015-03-10 02:25:03

标签: android jquery webview fullpage.js

该页面由jquery-fullpage插件实现,如下所示: http://alvarotrigo.com/fullPage/#firstPage

在Android应用中,WebView无法正常显示。它与一个页面中的所有子页面重叠,没有滚动条。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

您的浏览器版本可能会受到影响。检查Github上的issue

请记住在WebView中启用javascript:

WebView webView = (WebView) findViewById(R.id.webview);
webView = (WebView) findViewById(R.id.webview);
webView.clearCache(true);
webView.clearHistory();
         /* Enabling javascript */
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);