服務(wù)端代碼這里就不貼了
html代碼比較簡(jiǎn)單,需要自行引入jquery庫(kù)
復(fù)制代碼 代碼如下:
body>
請(qǐng)輸入用戶(hù)名:input type="text" id="userName" class="userText"/> input type="button" value="校驗(yàn)" id="verifyButton" />
div id="result">/div>
/body>
js代碼
復(fù)制代碼 代碼如下:
/*
* 在頁(yè)面裝載完成時(shí)注冊(cè)上這些工作
* */
$(document).ready(function() {
//這里面的內(nèi)容就是頁(yè)面裝載完成后需要執(zhí)行的代碼
var userNameNode = $("#userName");
//需要找到button按扭,注冊(cè)事件
$("#verifyButton").click(function() {
//1.獲取文本框的內(nèi)容
var userName = userNameNode.val();
//2.將這個(gè)內(nèi)容發(fā)送給服務(wù)器端
if (userName == "") {
alert("用戶(hù)名不能為空");
} else {
$.get("http://127.0.0.1:8080/JQuery/UserVerify?userName=" + encodeURI(encodeURI(userName)),null,function(response){
//3.接收服務(wù)器端返回的數(shù)據(jù),填充到div中
$("#result").html(response);
});
}
});
//需要找到文本框,注冊(cè)事件
userNameNode.keyup(function(){
//獲取當(dāng)前文本框中的內(nèi)容
var value = userNameNode.val();
if (value == "") {
//讓邊框變成紅色,并且?guī)П尘皥D
userNameNode.addClass("userText");
} else {
//去掉邊框和背景圖
userNameNode.removeClass("userText");
}
});
});
css樣式,目的是讓文本框中沒(méi)有內(nèi)容的時(shí)候邊框?yàn)榧t色并下方有紅色波浪
復(fù)制代碼 代碼如下:
.userText {
/*控制文本框的邊框是紅色的實(shí)線(xiàn)*/
border: 1px solid red;
background-image: url(../images/userVerify.gif);
background-repeat: repeat-x;
background-position: bottom;
}
您可能感興趣的文章:- asp.net+Ajax校驗(yàn)用戶(hù)是否存在的實(shí)現(xiàn)代碼
- jquery easyUI中ajax異步校驗(yàn)用戶(hù)名
- ajax設(shè)置async校驗(yàn)用戶(hù)名是否存在的實(shí)現(xiàn)方法