HTML5里的Web SQL数据库,内置了SQLite数据库, 对数据库的操作使用executeSql执行增删改查 1. 创建数据库 function creatDatabase(){ db = openDatabase('Student', '1.0', 'StuManage', 2 * 1024 * 1024); } 2. 创建表 function createTable(){ if (db) { var strSQL = "create table if not exists StuInf…