摘要: store.js 是一个实现了浏览器的本地存储的 JavaScript 封装 API,不是通过 Cookie 和 Flash 技术实现,而是使用 localStorage、globalStorage 和 userData 行为。示例代码:// Store 'marcus' at 'username'store.set('username', 'marcus')// Get 'username'store.get('username')// Remove 'username'store 阅读全文
posted @ 2012-03-19 11:05 wgw8299 阅读(1344) 评论(0) 推荐(0) 编辑