ajax製作表單驗證樣本

來源:互聯網
上載者:User
ajax的功能主要是應用在js上,ajax對asp沒什麼要求,asp只負責在後台顯示及操作服務端的資料。
可以像下面這樣思考:
1.寫表單第一項(如使用者名稱)
2.onblur事件(失去焦點)發生時開始驗證,onblur="checkusername()"
3.js發一個請求給第一個asp(假定為ajaxusername.asp)如果從資料庫中找到了這個使用者,給出1(ajaxusername.asp所有內容就是一個1)如
<%
response.write "1"
%>
4.js收到,會自動執行checkuser()函數。
checkuser把使用者名稱一行底色改變,並顯示“使用者己存在”

asp部分你就自己寫了。下面給出一些js代碼。
<script>
/*以下函數一般不需要改變*/
var Ajax;
function CreateAjax(){
if (window.XMLHttpRequest){
Ajax = new XMLHttpRequest();
}else if (window.ActiveXObject){
Ajax = new ActiveXObject("Microsoft.XMLHTTP");
}
}
function SendData(url_,sendtext_){
Ajax.open("POST",url_,true);
Ajax.onreadystatechange = checkuser;
Ajax.send(sendtext_);
}
function CheckAjaxStatus(Ajax_){
if(Ajax_.readyState == 4)
if(Ajax_.status == 200)
return true;
return false;
}
/*以上函數一般不需要改變*/
function checkuser(){
if(!CheckAjaxStatus(Ajax))return;
//asp返回果對結果的處理。伺服器返回的就是ajax.asp,這個結果存於Ajax.responseText屬性中。

}

function checkusername(){
CreateAjax();
SendData("ajax.asp","username=" + name);
}

</script>

相關文章

聯繫我們

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