• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    jQuery 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显示对号和错号用于验证输入验证码是否正确,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

    您可能感兴趣的文章:
    • Ajax和PHP正则表达式验证表单及验证码
    • thinkphp验证码的实现(form、ajax实现验证)
    • PHP生成各种常见验证码和Ajax验证过程
    • jsp+ajax实现的局部刷新较验验证码(onblur事件触发较验)
    • 基于Ajax用户名验证、服务条款加载、验证码生成的实现方法
    • asp.net ajax实现无刷新验证码
    上一篇:Ajax上传图片及上传前先预览功能实例代码
    下一篇:巧用ajax请求服务器加载数据列表时提示loading的方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    jQuery Ajax显示对号和错号用于验证输入验证码是否正确 jQuery,Ajax,显示,对号,和,