localStorage

Posted aWolfMan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了localStorage相关的知识,希望对你有一定的参考价值。

将数组转换成json后,存入localStorage

https://my.oschina.net/crazymus/blog/371757

http://blog.csdn.net/u011413061/article/details/49999785 

时间函数:

function compareTime(myTime) {
        var currentTime = new Date;
        var myArray = Array();
        myArray[0] = currentTime.getFullYear();
        myArray[1] = currentTime.getMonth();
        myArray[2] = currentTime.getDate();
        myArray[3] = currentTime.getHours();
        myArray[4] = currentTime.getMinutes();
        myArray[5] = currentTime.getSeconds();
        for (var i in myArray){
            console.log("myArray"+[i]+": "+myArray[i]);
        }
        for (var x=0; x<4 ; x++){
            if (myArray[x]);
        }
     }

  

以上是关于localStorage的主要内容,如果未能解决你的问题,请参考以下文章

怎么通过代码实现seesionstorage和localstorage的切换

检查 localStorage 是不是可用

android html5 localstorage某手机从localstorage中取不到数据

Angular 6:刷新后从localStorage获取令牌

XMLHttpRequest 替换元素不适用于 LocalStorage

误解localStorage的概念