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

H5 应用返回按钮的js代码设计,设计思想模仿stack

时间:2015-06-03 21:33:07      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:javascript   js   stack   history   history.back   

history.back();

这段代码有天然的缺陷,使用过的都知道,在H5的应用,特别是模仿手机应用的时候,这个不够用。

特写了一段js来实现类似的功能,如有重复和不喜请轻喷。技术分享


不多说,上代码:

/**
 * Created by piggsoft@163.com on 2015/5/28.
 */
var historyUtils = {
    add : function (url) {
        var historyArray = historyUtils.getLocal();
        if (!historyArray) {
            historyArray = [];
        }
        var currentPage = historyArray.pop();
        if (currentPage && currentPage == url) {
            //do nothing
        } else if (currentPage){
            historyArray.push(currentPage); //历史里面没有现在传入的url,在加回去
        }
        historyArray.push(url);
        historyUtils.saveLocal(historyArray);
    },
    back : function() {
        var historyArray = historyUtils.getLocal();
        var currentPage = historyArray.pop();//去掉当前页面,pop取最后,类似stack
        var history = historyArray.pop();
        if (!history) {//没有历史页面
            historyUtils.add(currentPage);//将当前页面加入回数组中
            return;
        }
        historyUtils.saveLocal(historyArray);
        window.location.href = history;
    },
    getLocal : function() {
        var result = window.sessionStorage.getItem(historyUtils.key);
        if (!result) {
            return null;
        }
        return JSON.parse(result);
    },
    saveLocal : function(data) {
        window.sessionStorage.setItem(historyUtils.key, JSON.stringify(data));
    },
    init : function() {
        historyUtils.saveLocal([]);
    },
    key : "_history_"
}

historyUtils.add(window.location.href);


在需要实现back的地方调用

historyUtils.back();



H5 应用返回按钮的js代码设计,设计思想模仿stack

标签:javascript   js   stack   history   history.back   

原文地址:http://blog.csdn.net/myliveisend/article/details/46351513

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