您好,登錄后才能下訂單哦!
【簡單的留言本】用HTML新增的數(shù)據(jù)庫實(shí)現(xiàn)
使用數(shù)據(jù)庫實(shí)現(xiàn)的WEB留言本
var datatable = null;
var db = openDatabase('Mydata','','My Database',102400);
function init() {
datatable = document.getElementById("datatable");
showAllData();
}
function removeAllData() {
for(var i = datatable.childNodes.length-1;i>=0;i--){
datatable.removeChild(datatable.childNodes[i]);
}
var tr = document.createElement('tr');
var th2 = document.createElement('th');
var th3 = document.createElement('th');
var th4 = document.createElement('th');
th2.innerHTML = "姓名";
th3.innerHTML = "留言";
th4.innerHTML = "時(shí)間";
tr.appendChild(th2);
tr.appendChild(th3);
tr.appendChild(th4);
datatable.appendChild(tr);
}
function showData(row) {
var tr = document.createElement('tr');
var td1 = document.createElement('td');
td1.innerHTML = row.name;
var td2 = document.createElement('td');
td2.innerHTML= row.message;
var td3 = document.createElement('td');
var t = new Date();
t.setTime(row.time);
td3.innerHTML = t.toLocaleDateString()+""+t.toLocaleTimeString();
tr.appendChild(td1);
tr.appendChild(td2);
tr.appendChild(td3);
datatable.appendChild(tr);
}
function showAllData() {
db.transaction(function (tx) {
tx.executeSql('CREATE TABLE IF NOT EXISTS MsgData(name TEXT,message TEXT,time INTEGER)',[]);
tx.executeSql('SELECT * FROM MsgData',[],function (tx,rs) {
removeAllData();
for(var i =0 ;i<rs.rows.length ;i ++){
showData(rs.rows.item(i));
}
});
});
}
function addData(name,message,time) {
db.transaction(function (tx) {
tx.executeSql('INSERT INTO MsgData VALUES(?,?,?)',[name,message,time],function (tx,rs) {
alert("成功保存數(shù)據(jù)!");
},function (tx,rs) {
alert(error.source+"::" + error.message);
});
});
}
function saveData() {
var name = document.getElementById('name').value;
var memo = document.getElementById('memo').value;
var time = new Date().getTime();
//alert(time);
addData(name,memo,time);
showAllData();
}
使用數(shù)據(jù)庫實(shí)現(xiàn)的Web留言本
姓名:
留言:
________________________________________
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。