[转]jquery mobile中redirect重定向问题
Posted shw0009
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[转]jquery mobile中redirect重定向问题相关的知识,希望对你有一定的参考价值。
本文转自:http://www.cnblogs.com/freeliver54/p/3529813.html
在jquerymobile提交后如果要进行网页重定向时,一定要在form或<a>标签中使用data-ajax="false",否则不能实现重定向问题。
如:<a href="#pageTweetDetail"
data-transition="flip"
data-role="button"
data-icon="delete"
data-ajax="false"
class="ui-btn-right">删除</a>
或
<form action="save.do" method="post"data-ajax="false">
。。。。
</form>
以上是关于[转]jquery mobile中redirect重定向问题的主要内容,如果未能解决你的问题,请参考以下文章
使用 jQuery mobile 在 Flask 中调用重定向(url_for('xxx'))后浏览器中的 URL 未更新