一个简单的JavaScript数据缓存系统实现代码
时间:2020-12-25 13:19:02|栏目:JavaScript代码|点击: 次
复制代码 代码如下:
var DataCache = function(){
if(!(this instanceof DataCache)){
return new DataCache();
}
this.id = 0;
this.caches = {};
};
DataCache.prototype = {
add : function(val){
val = val || null;
key = "dc_" + this.id;
this.caches[key] = val;
return key;
},
remove : function(key){
delete this.caches[key];
},
get : function(key){
return this.caches[key];
},
set : function(key,val){
this.caches[key] = val;
}
};
上一篇:Javascript String.replace的妙用
栏 目:JavaScript代码
下一篇:javascript getElementById 使用方法及用法
本文标题:一个简单的JavaScript数据缓存系统实现代码
本文地址:http://www.codeinn.net/misctech/36622.html