我正在尝试清除我的 html5 本地 sql 数据库,但由于某种原因它无法正常工作。请在下面查看我的代码:我的警报总是显示长度> 0,有人知道为什么吗?
function clearHistory(){
db.transaction( function(tx){
tx.executeSql('DELETE * FROM history', []);
});
db.transaction(function(tx) {
tx.executeSql('SELECT * FROM history', [], function (tx, results) {
var len = results.rows.length, i;
alert ("length=" + len);
});
});
}