var strSQL = "insert into tableName values (?,?,?)"; var info=[1,1,1]; //向web sql数据表插入数据。 function insertInfo(strSQL,info){ //连接数据库(http://www.cnblogs.com/nb08611033/p/8227560.html) db = openDB(); if (db) { db.transaction(function(tr) { tr.executeSql(strSQL,info, //SQL语句成功时执行 function(){ }, //SQL语句出错执行 function(){ }); }); } }
原文地址:https://www.cnblogs.com/nb08611033/p/8227588.html
时间: 2024-10-03 22:12:25