摘要: HTML5新增本地数据库SQLLite,<!DOCTYPE html><html><head> <meta charset="utf-8"></head><body> <script> var db = openDatabase('mydb','1.0','for test',2*1024*1024);//数据库名mydb,版本1.0,描述for test,大小2m db.transaction(function (tx){ tx.execut 阅读全文
posted @ 2012-05-25 10:46 Sheldon.Dai 阅读(783) 评论(0) 推荐(1) 编辑
摘要: 1.sessionStorage两个页面a.html,b.html## a.html<!DOCTYPE html><html><head> <meta charset="utf-8"></head><body> <script> sessionStorage.setItem('msg','hello world'); console.log(sessionStorage.getItem('msg')); </script></ 阅读全文
posted @ 2012-05-25 10:23 Sheldon.Dai 阅读(224) 评论(0) 推荐(0) 编辑