码迷,mamicode.com
首页 > 移动开发 > 详细

移动端如何解决页面返回上次浏览位置问题

时间:2020-07-15 12:56:46      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:cti   如何   tor   list   console   als   class   lse   参数   

function pushHistory() {
        var state = {};
        state = {
            // title: "itGrade",
            自定义参数:自定义参数
        };
        console.log(state);
        window.history.pushState(state, null, "#");
    }

    // 在需要监听的页面执行该方法 自动监听页面返回操作
    window.addEventListener("popstate", function(e) {
        console.log(window.history);
        var state = window.history.state;
        console.log(state);
        if(state){
           //对应pushHistory 中的state的参数处理数据
        }else{
            window.history.go(-1);
        }
    }, false);

 

移动端如何解决页面返回上次浏览位置问题

标签:cti   如何   tor   list   console   als   class   lse   参数   

原文地址:https://www.cnblogs.com/-lin/p/13304693.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!