码迷,mamicode.com
首页 > 其他好文 > 详细

前段存储的调用函数

时间:2017-05-27 14:18:37      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:turn   存储   error   函数   als   console   obj   ons   else   

//items:items({name:1,age:13,phone:12})//传参数
(function(win,doc){
var GD16={
items:function (arguments){//这个是用于存和取值的函数
if(typeof arguments==‘object‘){
for(var i in arguments){
window.localStorage.setItem(i,arguments[i]);
}
}else if(typeof arguments==‘string‘){
return window.localStorage.getItem(arguments);//获取

}else{
return console.error(‘参数只能是json,或者string‘)
}
},
removeitem:function (val){
if(val){
window.localStorage.removeItem(val);
}else{
var json=window.localStorage(val);
for(var i in json){
window.localStorage.removeItem(i);
}
}
}
};win.GD16=GD16;

})(window,document);

前段存储的调用函数

标签:turn   存储   error   函数   als   console   obj   ons   else   

原文地址:http://www.cnblogs.com/deng-00/p/6912533.html

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