使用AJAX进行自定义Jquery验证

时间:2012-09-14 05:18:32

标签: php jquery

我想知道如何在Jquery验证中实现AJAX结果。例如,我想通过AJAX检查用户名是否可用或在数据库中不可用,并提示用户其可用性或不可用性我该怎么做?提前谢谢

2 个答案:

答案 0 :(得分:1)

关于它看起来如何的想法

    $.ajax({
       url: 'yourusernamecheckpage.php',
       type:'post',
       data:{'username':$('#yourusername').val()},
       beforeSend:function(){
            //do a loading msg..like checking..

       },
       success:function(msg){
       if(msg == 'ok'){
        //username available
       }else{
        //username not available
       }
    },error:function(msg){

   alert(msg);
   }     


    });

//yourusernamecheckpage.php
//you can get the username as $_POST['username']:
//do your validation and 
echo 'ok';exit; 
//if available

答案 1 :(得分:0)

使用jQuery验证插件,并使用其remote验证方法。