在这里,我在使用 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; });
重定向.jsp 文件
<%response.sendRedirect( "somePage.jsp" );%>
奇怪的是index.jsp
没有包含时工作jqm js and css.