html的localstorage的存储应用

来源:互联网 发布:头影测量软件 编辑:程序博客网 时间:2024/04/25 01:36

if(!window.localstorage){

alert("浏览器支持localStorage");

}

else{

var storage = window.localStorage;

 storage["a"] = 1;

storage.a=1;

storage.setItem("c",3);

console.log(typeof storage["a"]);

console.log(typeof storage["b"]);

condole.log(typeof storage["c"]);

第一种方法读取

var a = storage.a;

console.log(a);

第二种方法读取

var b = storage["b"]

第三种方法读取

var c = storage.getItem("c");

console.log(c)

}

浏览器结果如下:

                                                          

原创粉丝点击