列表页跳转到详情页,点击返回 回到原位置

时间:2022-11-09 16:24:30

新闻流和游戏列表需要实现 跳转到详情页后返回,回到原位置。

新闻流:

  新闻资源支持iframe,

  利用同源页面跳转,浏览器不会刷新页面,通过在iframe中打开新闻详情页实现。

    location.history.pushState( {} , "title" , location.href );

    $("#detailNew iframe").off().remove();

    $("#detailNew").append("<iframe src='" + url + "' frameborder='0'></iframe>"); // 注意:重新创建iframe,防止浏览器将iframe的src存入history

 

 

游戏列表页:

  部分游戏资源不支持Iframe,

  点击游戏卡片后,获得当前url并添加url参数,记录当前显示的条数、页面卷去的高度;

  利用history.pushState()或history.replaceState()修改history后,当前页面跳转到详情页(不同域)。

  仍存在的问题:

    上述两种修改history对象的方法,只是修改了url,页面并不会刷新。

    例如:index.html跳转到详情页,点击返回,回到记录的gameMore.html,

       再次点击返回,url变为index.html,但是页面没有变化。(还是gameMore.html点击返回键前的状态)。

       导致不能多层返回。