3 回答
            1        
        
		
于 2013-02-06T18:12:33.743   回答
    
    
            0        
        
		
我认为您正在寻找类似的东西:
 window.onbeforeunload = function () {
     // stuff do do before the window is unloaded here.
 }
这在用户离开当前页面之前运行。
这意味着您可以强制用户导航到您的页面,该页面将正确刷新。
于 2013-02-06T16:10:09.713   回答
    
    
            0        
        
		
如果您只是向后导航一页,请尝试使用此操作而不是后退按钮:
<a href="javascript:history.go(-1)">BACK</a>
或者试一试:
$.mobile.changePage(href, {changeHash: false });
    于 2013-02-06T17:07:30.757   回答