1 Pengesahan maklumat asas
<?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; } //点击发送短信验证码 }) })
akan terpapar kod 2 kali.
<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 merealisasikan penjanaan kod pengesahan
Mula-mula perkenalkan fail jquery
<script src="jquery-1.11.0.js"script type="text>.js" </script>
<?php //点击发送短信验证码 $.ajax({ async : false, type: "get", url: "code.php", // data: {}, success: function (data) { $("#code").val(data); } });
4, buat kod.php permintaan ajax untuk memulangkan data
<?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);