摘要:
一个简单的demo: ajiegao.sinaapp.com/demo/mm.html源码:<!DOCTYPE HTML><html lang="zh-CN"><head><meta charset="UTF-8"><style type="text/css">html,body{margin:0;padding:0;width:100%;height:100%;overflow:hidden;}section{position:absolute;top:0;left:0;b 阅读全文
摘要:
indexedDB是存储大量结构化数据的API,demo中用到的是异步API,麻烦的就是所有对indexedDB的操作都会发生一个异步的‘请求’,只要熟悉了API操作起来也很简单。大体流程是这样1.打开数据库var indexedDB = window.indexedDB || window.webkitIndexedDB || window.mozIndexedDB;if ('webkitIndexedDB' in window) { window.IDBTransaction = window.webkitIDBTransaction; window.IDBKeyRange 阅读全文