1

我的主页如下所示:

<body>
    <div id="MainPage" data-role="page">
        <script>
            $("#MainPage").live("pageinit", function () { ... });
        </script>
        ...//I have a map and when I walk to the next page I delete the map.
    </div>
</body>

我的下一页如下所示:

<body>
  <div id="NextPage" data-role="page">
    <script>
      $("#NextPage").live("pageinit", function () {... });
    </script>
 <a data-res="btnBack" data-role="button" data-theme="b" href="MainPage.html"
                data-icon="back" data-iconpos="left" onclick="document.MainPage.reload(true);">
            </a>
    ...//I have a map and when I walk to the Main page I delete the map.
  </div>
</body>

因为我删除了地图,所以我必须重新加载主页并且它不起作用,所以主页不会被识别为页面,因此没有重新加载功能。

任何人都可以帮忙吗?

4

2 回答 2

5

从主页转到下一页时,请尝试保存主页的网址。

例如:您使用链接或按钮从一个页面遍历到另一个页面,使用此代码保存当前页面的 url,然后使用查询字符串或其他内容将其发送到其他页面。

$(document).ready(function(){
var url =$(location).attr("href");
});

变量 'url' 包含主页的 url,现在 reload 函数重新加载它。作为:

 $(document).ready(function(){
 window.reload(url);
 })
于 2012-11-27T10:54:43.177 回答
0

要跳转到任何其他页面,请使用以下代码:

$.mobile.changePage("#page", {transition: "none", reloadPage : false});

如果需要,请设置过渡效果,如果要重新加载该页面,请设置 reloadPage true。

使用此代码重新加载当前页面:

function refreshPage() {
  $.mobile.changePage(
    window.location.href,
    {
      allowSamePageTransition : true,
      transition              : 'none',
      showLoadMsg             : false,
      reloadPage              : true
    }
 );

}

于 2012-11-27T10:58:01.133 回答