您好,登錄后才能下訂單哦!
本篇內容介紹了“Ajax實現提交表單時驗證碼自動驗證 ”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
本文通過源碼展示如何實現表單提交前,驗證碼先檢測正確性,不正確則不提交表單,更新驗證碼。
1、前端代碼 index.html
<!DOCTYPE html> <html> <head> <title>驗證碼提交自驗證</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Language" content="zh-CN" /> </head> <body> <form action="doPost.php" method="POST"> <div class="row"> <label for="username">用戶名</label> <input type="text" name="username" id="username" /> </div> <div class="row"> <label for="mod-captcha-code">驗證碼</label> <input name="code" id="mod-captcha-code" size="6" class="zjcaptcha" type="text"/> <img class="code-img" src="createcode.php?t=0" onclick="this.src=this.src.substring(0,this.src.indexOf('?')+1)+Math.random();return false;" /> <script type="text/javascript" src="http://www.zjmainstay.cn/jquery/jquery-1.8.2.min.js"></script> <div class="yzmtips" ></div> </div> <div class="row"> <input type="submit" value="提交" class="submitBtn"/> </div> </form> <script> (function($){ $(document).ready(function(){ $(".submitBtn").click(function() { var obj = $(this); $.ajax({ url:'checkcode.php', type:'POST', data:{code:$.trim($("input[name=code]").val())}, dataType:'json', async:false, success:function(result) { if(result.status == 1) { obj.parents('form').submit(); //驗證碼正確提交表單 }else{ $(".code-img").click(); $(".yzmtips").html('驗證碼錯誤!'); setTimeout(function(){ $(".yzmtips").empty(); },3000); } }, error:function(msg){ $(".yzmtips").html('Error:'+msg.toSource()); } }) return false; }) }); })(jQuery); </script> </body> </html>
2、后端驗證碼檢測 checkcode.php
<?php /** * 用戶驗證碼驗證文件 * @Author:Zjmainstay * @version : 1.0 * @creatdate: 2013-10-4 */ session_start(); echo json_encode(array('status'=>(int)($_SESSION["CHECKCODE"] == $_POST['code']))); exit;
“Ajax實現提交表單時驗證碼自動驗證 ”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。