我的 WEB APP :
上有这段代码$(document).on('pageinit', function(){
$(".radius").on('change',function(){
$("#cercadeMiForm").submit();
});
});
不,如果我在我的网站上运行此操作,每次更改组合“radius”的组合选择时,我的表单都会正确提交。
如果我在我的移动设备独立浏览器应用程序上运行它,它也可以。
然而,当我在我自己的应用程序的webview中运行它时,它不起作用。我正在使用jQueryMobile,它似乎工作正常,所以我猜它不是一个jQuery的东西。
这是我初始化 WebView :
的地方mWebView = (WebView) findViewById(R.id.webView);
mWebView.getSettings().setUserAgentString(Constants.USER_AGENT);
mWebView.getSettings().setBuiltInZoomControls(true);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setPluginState(WebSettings.PluginState.ON);
mWebView.getSettings().setDomStorageEnabled(true);
mWebView.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);