Ajax JSP實現的自動儲存草稿

來源:互聯網
上載者:User

一、表單部分 (index.html)
首先是表單填寫頁面,用一個ID為AutoSaveMsg的DIV來顯示返回資訊,並且用一個ID為Draft_AutoSave的CheckBox來確定是否進行自動儲存,然後將Textarea的ID命名為message。同時為了應對多使用者同時使用的需要,加上使用者名稱,每個使用者的草稿分開儲存。為了說明方便,這裡把一些修飾性的東西去掉,這樣看起來比較明了
<h2>AJAX應用之草稿自動儲存</h2><br />
<!-- 使用者名稱預設為NONAME -->
使用者名稱:
<input type="text" name="memName" id="memName"
size="20" value="NONAME" disabled="true" />
<!-- 在自動儲存選項的onclick事件中調用自動儲存狀態設定函數 -->
<input onclick="SetAutoSave();" type="checkbox" id="Draft_AutoSave" value="1" checked="true" />自動儲存?

內容:
<textarea cols=40 rows=8 id="message">你編輯的內容將被自動儲存,以便恢複</textarea><br /><br />
<!-- AutoSaveMsg顯示返回資訊 -->
<div id="AutoSaveMsg"></div><br />
<input type="submit" onclick="Save();" value="Save" />
<!-- 調用函數恢複最後儲存的草稿 -->
<input type="button" onclick="AutoSaveRestore();" value="Restore" />
</div>
</div>
<!-- 將JS代碼放在所有對象之後,以免在頁面未載入完成時出現對象不存在的錯誤 -->
<!-- AJAX類 -->
<script type="text/javascript" src="ajaxrequest.js"></script>
<!-- 自動儲存代碼 -->
<script type="text/javascript" src="autosave.js"></script>

二、自動儲存代碼(autosave.jsp):
// 首先設定全域變數
// 要儲存的內容對象FormContent
var FormContent;
// 顯示返回資訊的對象
var AutoSaveMsg=document.getElementById("AutoSaveMsg");
// 使用者名稱
var memName=document.getElementById("memName").value;
// 自動儲存時間間隔
var AutoSaveTime=10000;
// 計時器對象
var AutoSaveTimer;
// 首先設定一次自動儲存狀態
SetAutoSave();
// 自動儲存函數
function AutoSave() {
FormContent=document.getElementById("message");
// 如果內容或使用者名稱為空白,則不進行處理,直接返回
if(!FormContent.value!memName) return;
// 建立AJAXRequest對象
var ajaxobj=new AJAXRequest;
ajaxobj.url="autosave.jsp";
ajaxobj.content="action=AutoSave&memname="+memName+"&postcontent="+FormContent.value;
ajaxobj.callback=function(xmlObj) {
// 顯示反饋資訊
AutoSaveMsg.innerHTML=xmlObj.responseText;
}
ajaxobj.send();
}
// 設定自動儲存狀態函數
function SetAutoSave() {
// 是否自動儲存?
if(document.getElementById("Draft_AutoSave").checked==true)
// 是,設定計時器

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.