DOCTYPE htmltitle>HTML5 WebDatabasevar db=""
window.onload=function(){
if(window.openDatabase){
//打开数据库,不存在数据库则会自动创建
db = window.openDatabase("test", "1.0", "HTML5 Database API example", 200000);
//创建表
db.transaction(
function(tx){
tx.executeSql(
"create table oo(id REAL UNIQUE, text TEXT)",
[],
function(tx){alert("创建表成功");},
...
继续阅读
(3)