0

我正在使用 jQuery Mobile,如果 div 中的文本等于某个值,则无法重新加载页面。div 的内容是用 AJAX 加载的。div 的内容正在通过 AJAX 更新就好了,但我不知道为什么当内容等于“您的项目已过期”时页面没有重新加载。

 $(document).on('pagebeforeshow', '#listitem', function(event){       
        $(document).ready(function(){
      refreshTable();
    });

    function refreshTable(){

   $('#tableHolder').load('ajax_item_time.php', function(){
       if($("#tableHolder").text() == "Your item has expired."){
         window.location.assign("mobile_list.php")
       } 
       else {
      setTimeout(refreshTable, 5000);
       }
   });

    }
});

有任何想法吗?谢谢!

4

1 回答 1

1

这可能会帮助您:

使用.changePage()而不是window.location.assign.

$.mobile.changePage("#YOUR_PAGE_ID");

这是文档

于 2013-03-31T05:36:40.303 回答