js监听手机返回键,回到指定界面

 

可以再了解下pajax中修改浏览器地址栏!

 

    $(document).ready(function(){
      pushHistory("/index/store/index?keywords={$keywords}","","主页");
    });

    /*-----监听返回事件-----*/
    function pushHistory(returnUrl,currentUrl,currentTitle) {
      window.addEventListener("popstate", function(e) {
        window.location.href=returnUrl;
      }, false);
      var state = {
        title: currentTitle,
        url: currentUrl
      };
      window.history.pushState(state, currentTitle, currentUrl);
    }

 

 

转 :  https://blog.csdn.net/weixin_42331327/article/details/82347985

posted @ 2020-09-10 15:38  与f  阅读(453)  评论(0编辑  收藏  举报