后臺Java代碼【驗證碼生成】
成都創(chuàng)新互聯(lián)公司自2013年創(chuàng)立以來,是專業(yè)互聯(lián)網(wǎng)技術服務公司,擁有項目網(wǎng)站制作、網(wǎng)站建設網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元北海街道做網(wǎng)站,已為上家服務,為北海街道各地企業(yè)和個人服務,聯(lián)系電話:18982081108
/** * 隨機生成6位隨機驗證碼 */ public static String createRandomVcode(){ //驗證碼 String vcode = ""; for (int i = 0; i < 6; i++) { vcode = vcode + (int)(Math.random() * 9); } return vcode; }
后臺Java代碼【使用驗證碼并將驗證碼保存到session里面】
String authCode = xioo.createRandomVcode(); //隨機生成驗證碼 HttpSession session=request.getSession(); //session屬性 session.setAttribute("authCode", authCode); // 保存驗證碼到session里面
后臺Java代碼【將用戶輸入的驗證碼與session里面的驗證碼對比】
HttpSession session=request.getSession(); String usercode=request.getParameter("user_code"); //獲取用戶輸入的驗證碼 String sessioncode=(String) session.getAttribute("authCode"); //獲取保存在session里面的驗證碼 String result=""; if( usercode != null && usercode.equals(sessioncode)){ //對比兩個code是否正確 result = "1"; }else{ result = "0"; } PrintWriter out = response.getWriter(); out.write(result.toString()); //將數(shù)據(jù)傳到前臺 }
前臺Ajax代碼【獲取用戶輸入的代碼傳到后臺】
$(document).ready(function() { $("#user_code").blur(function() { var user_code = $("#user_code").val(); //ur事件 // 向后臺發(fā)送處理數(shù)據(jù) $.ajax({ url : "CheckCode", //目標地址 data : "user_code=" + user_code, //傳輸?shù)臄?shù)據(jù) type : "POST", // 用POST方式傳輸 dataType : "text", // 數(shù)據(jù)格式 success : function(data) { data = parseInt(data, 10); if (data == 1) { $("#error").html("√ × 驗證碼有誤,請核實后重新填寫"); } } }); }); });
以上就是本文的全部內(nèi)容,希望本文的內(nèi)容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持創(chuàng)新互聯(lián)!