您好,登錄后才能下訂單哦!
Ajax(無需等待直接向服務(wù)器發(fā)起請求)
(Asynchronous Javascript And Xml) :異步的
Google創(chuàng)新的一種js技術(shù)
方法一:比較原始沒有封裝的方法:
//核對用戶名是否可用 var xmlhttp = null; function checkUser(userName) { if (xmlhttp == null) { xmlhttp = new XMLHttpRequest();//第一步:創(chuàng)建一步通信對象 } //第二步:設(shè)定回調(diào)函數(shù) xmlhttp.onreadystatechange = function () { if (xmlhttp.readyState === 4 && xmlhttp.status === 200) { $("#tip").html(xmlhttp.responseText); } } xmlhttp.open("get", "register?op=check&userName=" + userName); xmlhttp.send(); }
從文本框中輸入一個字符后就立即到數(shù)據(jù)庫中查找該用戶名是否存在,如果存在,提示不可用,直到可用為止;
方法二:JQuery的Ajax:
//核對用戶名是否可用 function checkUser(userName) { $.ajax({ type: 'post',//如果是get可以不寫type,默認(rèn)是get url: "register",//action方式 data: {op: 'check', userName: userName}, //參數(shù),如果參數(shù)多,可用date后跟一個大括號 success: function (res) {//回調(diào)函數(shù) if (res.indexOf("yes") !== -1) { $("#tip").html("Yes! Available: user name!");//可用 //$("#tj").prop("disabled", false); //設(shè)置按鈕可用 } else { $("#tip").html("No! User name: not available!");//不可用 // $("#tj").prop("disabled", true); //設(shè)置按鈕不可用 } } }); }
運(yùn)行效果和上面一樣;
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。