php+ajax實現文章自動儲存的方法_php技巧

來源:互聯網
上載者:User

本文執行個體講述了php+ajax實現文章自動儲存的方法。分享給大家供大家參考。具體分析如下:

php+ajax文章自動儲存的方法主是要方便使用者,提高使用者體驗,我們就是用ajax把資料儲存一個臨時資料,像csdn一樣,他可以自動儲存使用者的資料,這樣就是掉電,出現意外你編輯的資料都不人被丟失.

這是自動儲存草稿的核心的一部分,

autosavetime(sec) 這個函數是用來開始計時的

clearTimeout(autosavetimer);清除定時器

document.getElementById('autosavetimebox').innerHTML=sec+"秒";取得頁面中的autosavetimebox對像,並向其寫入倒計時

複製代碼 代碼如下:
if(sec>0) {
       autosavetimer = setTimeout("autosavetime("+sec+"-1)",1000);  
     //這裡就是如果當sec>0的時候,第一秒執行一次autosavetime這個函數,同時會把sec-1的值寫入autosavetimebox中
}else {
          var title=document.getElementById('title');
          if(title.value!=''){
                                  autosave_post();
          }else{
                 document.getElementById('autosavetimebox').innerHTML='不用儲存';   
          }
}

這一部分,就是當sec>0的條件不成立,呵呵,就是sec<=0的時候,開始執行儲存草稿,首先會判斷文章的標題是否為空白,如果不會為空白,就執行autosave_post()這個函數,否則就寫入‘不用儲存'.

php代碼如下:

複製代碼 代碼如下:
var userAgent = navigator.userAgent.toLowerCase();
var is_opera  = (userAgent.indexOf('opera') != -1);
var is_saf    = ((userAgent.indexOf('applewebkit') != -1) || (navigator.vendor == 'Apple Computer, Inc.'));
var is_webtv  = (userAgent.indexOf('webtv') != -1);
var is_ie     = ((userAgent.indexOf('msie') != -1) && (!is_opera) && (!is_saf) && (!is_webtv));
var is_ie4    = ((is_ie) && (userAgent.indexOf('msie 4.') != -1));
var is_moz    = ((navigator.product == 'Gecko') && (!is_saf));
var is_kon    = (userAgent.indexOf('konqueror') != -1);
var is_ns     = ((userAgent.indexOf('compatible') == -1) && (userAgent.indexOf('mozilla') != -1) && (!is_opera) && (!is_webtv) && (!is_saf));
var is_ns4    = ((is_ns) && (parseInt(navigator.appVersion) == 4));
var is_mac    = (userAgent.indexOf('mac') != -1);
if ((is_ie & !is_ie4) || is_moz || is_saf || is_opera)
{
    var allowajax=1;
}else{
    var allowajax=0;
}
var xmlHttp = false;
function makeSendData(postData,url,functionName,httptype) {
 
var posturl=url;
try {
   xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
   try {
     xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
   } catch (e2) {
     xmlHttp = false;
   }
}
if (!xmlHttp && typeof XMLHttpRequest != 'undefined') {
   xmlHttp = new XMLHttpRequest();
}
 
if (!xmlHttp) {
        alert('Cannot send an XMLHTTP request');
        return false;
}
 
// 提交表單的方式
xmlHttp.open(httptype, posturl, true);
 
// 當表單提交完成後觸發一個事件
var changefunc="xmlHttp.onreadystatechange = "+functionName;  ///////from bob
eval (changefunc);
xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); 
xmlHttp.send(postData);
}
function autosave_post()
{
    var title=document.getElementById('title').value;
    var content = window.frames["Editor"].window.frames["HtmlEditor"].document.getElementsByTagName("BODY")[0].innerHTML;
    var postTime=document.getElementById('postTime').value;
    if(allowajax==1)
    {
        content=postencode(content);
        title=postencode(title);
        var post="title="+title+"&content="+content+"&postTime="+postTime+"";
        var url="ajax.php?act=autosave";
        makeSendData(post,url,'autosave','POST');
    }
}
function autosave()
{
    if(xmlHttp.readyState == 4)
    {
        if(xmlHttp.status == 200)
        {
            var autoresponse=xmlHttp.responseText;
            var automessage=document.getElementById('autosavetimebox');
            if(autoresponse.indexOf("<autosave_error>")!=-1)
            {
                automessage.innerHTML='您還沒有添寫資訊,不用儲存草稿';
                return false;
            }
            if(autoresponse.indexOf("<autosave_ok>")!=-1)
            {
                automessage.innerHTML='儲存成功,您可以在發生意外的時候載入草稿';
                finddraft();
            }
        }
    }
}
function finddraft()
{
    if(allowajax==1)
    {
        var url="ajax.php?act=loaddraft";
        makeSendData(null,url,'loaddraft','POST');
    }
}
function loaddraft()
{
    var draftbox=document.getElementById('draft');
    if(xmlHttp.readyState < 4)
    {
        draftbox.innerHTML='草稿載入中...';
    }
    if(xmlHttp.readyState == 4)
    {
        if(xmlHttp.status == 200)
        {
            draftbox.innerHTML=xmlHttp.responseText;
        }
    }
}
function cleardraft()
{
    if(allowajax==1)
    {
        var url="ajax.php?act=cleardraft";
        makeSendData(null,url,'nodraft','POST');
    }
}
function nodraft()
{
    var draftbox=document.getElementById('draft');
    if(xmlHttp.readyState < 4)
    {
        draftbox.innerHTML='載入中...';
    }
    if(xmlHttp.readyState == 4)
    {
        if(xmlHttp.status == 200)
        {
            draftbox.innerHTML=xmlHttp.responseText;
        }
    }
}
//encode string
function postencode (str) { 
    str=encodeURIComponent(str);
    if (is_moz) str=str.replace(/%0A/g, "%0D%0A"); //from bob
    return str;
}

自動儲存的js代碼,代碼如下:
複製代碼 代碼如下:
var autosavetimer;
function autosavetime(sec) {
   clearTimeout(autosavetimer);
   document.getElementById('autosavetimebox').innerHTML=sec+"秒";
   if(sec>0) {
       autosavetimer = setTimeout("autosavetime("+sec+"-1)",1000);
   }else {
       var blogtitle=document.getElementById('title');
       if(blogtitle.value!=''){
           autosave_post();
       }else{
           document.getElementById('autosavetimebox').innerHTML='不用儲存';  
       }
   }
}
function startimer()
{
    var starttime=document.getElementById('autosavetimebox').innerHTML;
    if(starttime=='儲存成功,您可以在發生意外的時候載入草稿' || starttime=='您還沒有添寫資訊,不用儲存草稿')
    {
        starttime='60';
    }else{
        starttime=starttime.replace('秒','');
    }
    var autosavefunbox=document.getElementById('autosavefunbox');
    autosavefunbox.innerHTML='<a href="javascript教程:" onClick="javascript:stoptimer()">停止計時</a>';
    starttime==0 ? starttime=60 : starttime=starttime;
    autosavetime(starttime);
}
function stoptimer()
{
    var autosavefunbox=document.getElementById('autosavefunbox');
    autosavefunbox.innerHTML='<a href="javascript:" onClick="javascript:startimer()">開始計時</a>';
    clearTimeout(autosavetimer);
}

希望本文所述對大家的php程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.