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