这里我有一个问题,用JSP表单重定向URL提交页面(使用post方法)正在改变但是URL没有改变.......
页面序列:
index.jsp -> redirect.jsp -> somePage.jsp
index.jsp
文件包含jqm js
和css
这是我的mobileinit设置:
$(document).bind("mobileinit", function() {
$.mobile.defaultPageTransition = 'none';
$.mobile.ajaxFormsEnabled = false; });
redirect.jsp文件
<%response.sendRedirect( "somePage.jsp" );%>
如果index.jsp
没有包含jqm js and css.