您好,登錄后才能下訂單哦!
這篇文章主要介紹了ajax如何實現(xiàn)用戶名校驗的傳統(tǒng)和jquery的$.post方式,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
第一種:傳統(tǒng)的ajax異步請求,后臺代碼以及效果在最下邊
首先我們在eclipse中創(chuàng)建一個注冊頁面regist.jsp,創(chuàng)建一個form表單,注意,由于我們只是實現(xiàn)用戶名校驗的效果,下邊紅色部門是我們需要研究對象,所以其他的部門可以忽略不看。
內(nèi)容如下:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>用戶注冊</title> <link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath }/css/login.css" rel="external nofollow" > <script type="text/javascript"> //第三步:ajax異步請求用戶名是否存在 function checkUsername(){ // 獲得文本框值: var username = document.getElementById("username").value; // 1.創(chuàng)建異步交互對象 var xhr = createXmlHttp();//第二步中已經(jīng)創(chuàng)建xmlHttpRequest,這里直接調(diào)用函數(shù)就可以了。 // 2.設置監(jiān)聽 xhr.onreadystatechange = function(){ if(xhr.readyState == 4){ if(xhr.status == 200){ //把返回的數(shù)據(jù)放入到span中 document.getElementById("span").innerHTML = xhr.responseText;//responseText是后臺返回的數(shù)據(jù) } } } // 3.打開連接 xhr.open("GET","${pageContext.request.contextPath}/user_findByName.action?time="+new Date().getTime()+"&username="+username,true); // 4.發(fā)送 xhr.send(null); } //第二部:創(chuàng)建xmlHttp對象 function createXmlHttp(){ var xmlHttpRequest; try{ // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e){ try{// Internet Explorer xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e){ try{ xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch (e){} } } return xmlHttpRequest; } function change(){ var img1 = document.getElementById("checkImg"); img1.src="${pageContext.request.contextPath}/checkImg.action?"+new Date().getTime(); } </script> </head> <body> <form action="${pageContext.request.contextPath }/user_regist.action" method="post" onsubmit="return checkForm()";> <div class="regist"> <div class="regist_center"> <div class="regist_top"> <div class="left fl">會員注冊</div> <div class="right fr"><a href="${pageContext.request.contextPath }/index.jsp" rel="external nofollow" target="_self">小米商城</a></div> <div class="clear"></div> <div class="xian center"></div> </div> <div class="regist_main center"> //第一步:首先,我們創(chuàng)建一個用戶名input輸入框,并添加一個onblur="checkUsername()"事件 <div class="username">用 戶 名: <input class="shurukuang" type="text" id="username" name="username" onblur="checkUsername()"/><span id="span"></span></div> <div class="username">密 碼: <input class="shurukuang" type="password" id="password" name="password"/></div> <div class="username">確認 密碼: <input class="shurukuang" type="password" id="repassword" name="repassword" /></div> <div class="username">郵 箱 號: <input class="shurukuang" type="email" id="email" name="email" /></div> <div class="username">姓 名: <input class="shurukuang" type="text" id="name" name="name"/></div> <div class="username">手 機 號: <input class="shurukuang" type="text" id="phone" name="phone"/></div> <div class="username">地 址: <input class="shurukuang" type="text" id="addr" name="addr"/></div> <div class="username"> <div class="left fl">驗 證 碼: <input class="yanzhengma" type="text" id="checkcode" name="checkcode" maxlength="4"/></div> <div class="right fl"><img id="checkImg" class="captchaImage" src="${pageContext.request.contextPath}/checkImg.action" onclick="change()" title="點擊更換驗證碼"></div> <div class="clear"></div> </div> </div> <div class="regist_submit"> <input class="submit" type="submit" name="submit" value="立即注冊" > </div> </div> </div> </form> </body> </html>
第二種方式:使用jQuery中的ajax實現(xiàn)以上效果。首先form表單以及Action中的都不變,我們只需改變script就可以了。
第一步:引入js文件<script type="text/javascript" src="${pageContext.request.contextPath }/js/jquery-3.2.1.min.js"></script>
第二步:
//ajax異步請求用戶名是否存在 $(function(){ $('#username').change(function(){//給username添加一個change事件 var val = $(this).val();//獲取輸入框的值 val = $.trim(val);//去空 if(val != ""){//判斷值是否為空 var url = "${pageContext.request.contextPath}/user_findByName.action";//url還是那個URL var args ={"time":new Date().getTime(),"username":val};//這里和上面不同的是,這里用json方式實現(xiàn)傳入的time和username參數(shù) $.post(url,args,function(data){//發(fā)送post請求,后臺返回的數(shù)據(jù)在data里面, $('#span').html(data);//把后臺返回的數(shù)據(jù)放入span中 }); } }); })
然后我們來看一下后臺數(shù)據(jù)上會怎么返回的。由于我這是使用ssh框架實現(xiàn)的,為了方便,所以我只展示在Action中是怎么返回數(shù)據(jù)的,關于ssh框架中service層,dao層的實現(xiàn)請自行解決。
public class UserAction extends ActionSupport implements ModelDriven<User> { private static final long serialVersionUID = 1L; /** * 模型驅(qū)動 */ private User user = new User(); @Override public User getModel() { return user; } // 注入UserService private UserService userService; public void setUserService(UserService userService) { this.userService = userService; }
/** * AJAX進行異步校驗用戶名的執(zhí)行方法 * * @throws IOException */ public String findByName() throws IOException { User existUser = userService.findByName(user.getUsername());//調(diào)用service層的方法返回數(shù)據(jù)庫中查詢出來的對象 // 獲得response對象,向頁面輸出: HttpServletResponse response = ServletActionContext.getResponse(); response.setContentType("text/html;charset=UTF-8");//設置編碼格式 // 判斷返回的對象是否為空 if (existUser != null) { // 如果有,查詢到該用戶:用戶名已經(jīng)存在 response.getWriter().println("用戶名已經(jīng)存在"); } else { // 如果沒有,用戶名可以使用 response.getWriter().println("<font color='green'>用戶名可以使用</font>"); } return NONE;//此處返回空 }
效果如下:
jquery是一個簡潔而快速的JavaScript庫,它具有獨特的鏈式語法和短小清晰的多功能接口、高效靈活的css選擇器,并且可對CSS選擇器進行擴展、擁有便捷的插件擴展機制和豐富的插件,是繼Prototype之后又一個優(yōu)秀的JavaScript代碼庫,能夠用于簡化事件處理、HTML文檔遍歷、Ajax交互和動畫,以便快速開發(fā)網(wǎng)站。
感謝你能夠認真閱讀完這篇文章,希望小編分享的“ajax如何實現(xiàn)用戶名校驗的傳統(tǒng)和jquery的$.post方式”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業(yè)資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。