在jquery mobile中强刷页面

jquery mobile中有时候页面数据发生变化后,需要重新刷新一下,触发pageshow事件。

google了一下,在这里有比较详细的讨论:

http://forum.jquery.com/topic/page-level-refresh

在1.1.0版本中:

$.mobile.changePage( 'current page url', {reloadPage: true},{ allowSamePageTranstion: true},{ transition: 'none'});

这样的办法是可行的,如果不是要强刷整个页面,可以用r( ($.mobile.activePage).remove() 再重建的方法。但在1.1.0中貌似不可以。

你可能感兴趣的:(jquery,mobile,刷新)