溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

【簡單的留言本】用HTML新增的數(shù)據(jù)庫實(shí)現(xiàn)

發(fā)布時(shí)間:2020-07-14 20:32:47 來源:網(wǎng)絡(luò) 閱讀:581 作者:MyDear宸 欄目:數(shù)據(jù)庫

 【簡單的留言本】用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留言本

   


       


           

姓名:

           


               

                   

               

           

       

       


           

留言:

           


               

                   

               

           

       

       


           


           


               

           

       

   

   

________________________________________

   


向AI問一下細(xì)節(jié)

免責(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)容。

AI