使用jquery验证验证码

时间:2014-03-29 04:57:52

标签: php jquery html

我有一个申请表,我需要使用jquery验证验证码。如果输入的验证码是错误的,那么显示的警告框请再次输入验证码输入的验证码是错误的..我怎么能用jquery做这个..请帮助我,我是jquery的新手。

这是代码

 $(function() {
        $("#XISubmit").click(function(){
    $(document).ready(function(){
$("#XIForm").submit(function(event) {
event.preventDefault()
val=$('#vercode').val()
$.ajax({
        type:"post",
        url:"verify-captcha.php",
        data:{'code':val},
        success:function(data){
                 if(data=='false'){
                alert('Re-enter Captcha, You Entered wrong captcha code')
                $("#cap").html("<img  src='captcha.php'>"); }
                            else{  $("#XIForm").unbind('submit')}
                            }

        });                   
});

});


            document.getElementById("XIForm").submit();

                });

    <label>Security Validation</label>  

      <label>Security Validation</label>    

 <span><img   src="captcha.php"></span><input type="text" name="vercode" id="vercode" size="10" style="margin-top: -1px; float: left; width: 115px; margin-right: 12px;"></li><div id="msg"></div>

    captcha.php

    <?php
session_start();
$ranStr = md5(microtime());
$ranStr = substr($ranStr, 0, 6);
$_SESSION['cap_code'] = $ranStr;
$newImage = imagecreatefromjpeg("cap_bg.jpg");
$txtColor = imagecolorallocate($newImage, 0, 0, 0);
imagestring($newImage, 5, 5, 5, $ranStr, $txtColor);
header("Content-type: image/jpeg");
imagejpeg($newImage);
?>



verify-captcha.php
<?php
session_start(); 
if ($_POST["code"] != $_SESSION["cap_code"] || $_SESSION["cap_code"]=='')  { 
 echo 'false';
}else{
echo 'true';}

1 个答案:

答案 0 :(得分:0)

Html代码

<span><img   src="captcha.php"></span><input type="text" name="vercode" id="vercode" size="10" style="margin-top: -1px; float: left; width: 115px; margin-right: 12px;"></li><div id="msg"></div>

captcha.php的代码

<?php
session_start();
$ranStr = md5(microtime());
$ranStr = substr($ranStr, 0, 6);
$_SESSION['cap_code'] = $ranStr;
$newImage = imagecreatefromjpeg("cap_bg.jpg");
$txtColor = imagecolorallocate($newImage, 0, 0, 0);
imagestring($newImage, 5, 5, 5, $ranStr, $txtColor);
header("Content-type: image/jpeg");
imagejpeg($newImage);
?>

验证码的Jquery代码

$(document).ready(function(){
$("#form").submit(function(event) {
event.preventDefault()
val=$('#vercode').val()
$.ajax({
        type:"post",
        url:"verify-captcha.php",
        data:{'code':val},
        success:function(data){
                 if(data=='false'){
                alert('Re-enter Captcha, You Entered wrong captcha code')
                $("#cap").html("<img  src='captcha.php'>"); }
                            else{  $("#form").unbind('submit')}
                            }

        });                   
});

});

verify-captcha.php的代码

<?php
session_start(); 
if ($_POST["code"] != $_SESSION["cap_code"] || $_SESSION["cap_code"]=='')  { 
 echo 'false';
}else{
echo 'true';}