验证码的生成


1,基本信息的验证

<?php
$(document).ready(function() {
    $("#yzmfs").click(function () {
        //确保手机号不为空
        var mobile=$("#phone").val();
        if(mobile.length==0)
        {
            alert('请输入手机号码!');
            $("#phone").focus();
            return false;
        }
        if(mobile.length!=11)
        {
            alert('请输入11位手机号!');
            $("#phone").focus();
            return false;
        }
        var myreg = /^((1[3|4|5|8][0-9]{1})+\d{8})$/;
        if(!myreg.test(mobile))
        {
            alert('请输入正确的手机号码!');
            document.getElementById("phone").focus();
            return false;
        }
        //点击发送短信验证码
      
    })
})


2,点击发送短信验证码出现60秒倒计时的js实现:

<script type="text/javascript">
    var countdown=60;
    function settime(obj){
        //60秒倒计时
        if (countdown == 0){
            obj.removeAttribute("disabled");
            obj.value="发送短信验证码";
            countdown = 60;
            return;
        }else{
            obj.setAttribute("disabled", true);
            obj.value="重新发送(" + countdown + ")";
            countdown--;
        }
        setTimeout(function() {
                settime(obj) }
            ,1000)
    }
    </script>

3,ajax实现验证码的生成

先引入jquery文件

<script src="jquery-1.11.0.js" type="text/javascript"></script>

<?php
//点击发送短信验证码
$.ajax({
    async : false,
    type: "get",
    url: "code.php", //
    data: {},
    success: function (data) {
        $("#code").val(data);
  
    }
});

4,新建code.php ajax请求返回数据

并对验证码进行base64加密,代码如下:

<?php
$code_len=4;
$code=array_merge(range('A','Z'),range('a','z'),range(1,9));//需要用到的数字或字母
$keyCode=array_rand($code,$code_len);//真正的验证码对应的$code的键值
if($code_len==1){
    $keyCode=array($keyCode);
}
shuffle($keyCode);//打乱数组
$verifyCode="";
foreach ($keyCode as $key){
    $verifyCode.=$code[$key];//真正验证码
}
echo base64_encode($verifyCode);


继续学习
||
<?php echo "ajax实现验证码的生成";
提交重置代码
章节
笔记
提问
课件
反馈
捐赠