이 글은 입력된 인증 코드가 맞는지 확인하기 위해 올바른 숫자와 잘못된 숫자를 표시하는 jQuery Ajax를 주로 소개합니다. Ajax에 관심 있는 친구들은 이 글을 참고하세요!
더 이상 헛소리하지 마세요. 구체적인 코드는 다음과 같습니다.
<script src="js/j.js"></script> <script> $(document).ready(function(e) { $('#yes').hide(); $('#no').hide(); $('input[name=gcode]').keyup(function(){ if($(this).val().length==4){ $.post('gbook.php',{cc:$('input[name=gcode]').val()},function(msg){ if(msg=='yes'){ $('#no').hide(); $('#yes').show(); }else{ $('#yes').hide(); $("#no").show(); } }); } }); }); </script>
먼저 jquery를 소개합니다
.sl-error-verifycode { background-image: url("images/icons.png"); background-position: -26px 0; background-repeat: no-repeat; display: block; font-size: 18px; height: 23px; line-height: 20px; margin-left: 180px; margin-top: -25px; position: relative; text-align: center; width: 20px; z-index: 2; } .sl-correct-verifycode { background-image: url("images/icons.png"); background-position: -50px 0; background-repeat: no-repeat; display: block; font-size: 18px; height: 23px; line-height: 20px; margin-left: 180px; margin-top: -25px; position: relative; text-align: center; width: 20px; z-index: 2; }
HTML 코드
<tr> <td height="40" align="right">验证码:</td> <td height="40"><span class="addred">*</span></td> <td height="40"> <input type="text" name="gcode" id="textfield7" class="txtlist"> <span id="yes" class="sl-correct-verifycode"></span><span id="no" class="sl-error-verifycode"></span> <img style="float:right; margin-top:-25px; margin-right:300px;" align="middle" src="inc/cc.php" onClick="this.src='inc/cc.php?'+new Date" title="点击换一张图片" width="100px"></td> </tr>
gbook.php
<?php session_start(); if(isset($_POST['cc'])){ $cc = strtolower($_POST['cc']); $ss = strtolower($_SESSION['code']); if($cc==$ss){ echo "yes"; }else{ echo "no"; } }
그림을 가져와야 한다는 점에 유의하세요
위는 입력 확인을 위해 올바른 숫자와 잘못된 숫자를 표시하기 위해 편집기에서 도입한 jQuery Ajax입니다. 인증코드가 맞나요? 모두에게 도움이 되었으면 좋겠습니다! !
관련 권장 사항:
H5 모바일 개발을 설명하는 예 Ajax는 여러 Base64 형식 사진을 서버에 업로드합니다
위 내용은 jQuery Ajax는 입력된 확인 코드가 올바른지 확인하기 위해 올바른 숫자와 잘못된 숫자를 표시합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!