摘要: // localStorage util var db ={ set : function(key, obj){ localStorage.setItem(key, JSON.stringify(obj)); }, get : function(key){ return JSON.parse(localStorage.getItem(key)); }, each : fun... 阅读全文
posted @ 2018-06-26 15:52 zhanghui_ming 阅读(448) 评论(0) 推荐(0) 编辑