0

这是用于检查电子邮件是否存在的我的代码......我没有得到任何回复。所以请就这个问题向我提供一些解决方案。还有另一个文件在其中检查数据库中的电子邮件..但是 jquery 没有给出任何响应。

这是我的js代码..

<html>
<head>
 <?php include("head.inc.php");?>
 <script type="text/javascript">
 //VALIDATE USER EMAIL
    $(document).ready(function(){

    $('#eml').blur(function(){
            $.ajax({
                type:"POST"
                url:check.php,
                data:"username="+$('#eml').val(),
                beforeSend:function(data)
                {   
                    $('#msg').html('chkng..').css("color","green"); 
                },
                success:function(data){

                        if(data =='false')
                        {
                            $('#msg').html("already exist").css("color","red");
                        }
                        else if(data=='true')
                        {
                            $('#msg').html("Valid 6e").css("color","green");
                        }

                }


            });
    });
    });

  </script>
</head>
<body>
<form name="frm" action="check.php" method="post">
<input type="text" name="email" id="eml"/>
<input type="submit" id="ok" name="ok" value="OK"/>
<div id="msg" class=""></div>
</form>
</body>

</html>

检查.php

<?php
        include('conf.inc.php');
        $email=$_POST['email'];
        $q="select u_fname from users where u_email='$email'";
        $rs=mysql_query($q) or die("query");
        if(mysql_num_rows($rs)==0)
        {
            echo 'true'; //allow to register.
        }
        else   
        {
            echo 'false'; //not allow to register.
        }
?>

但我无法得到正确的输出。没有任何回应。

4

1 回答 1

0

尝试使用 return 而不是 echo。

if(mysql_num_rows($rs)==0)
        {
            return true; //allow to register.
        }
        else   
        {
            return false; //not allow to register.
        }

在js中

success:function(data){

                        if(data === false)
                        {
                            $('#msg').html("already exist").css("color","red");
                        }
                        else if(data === true)
                        {
                            $('#msg').html("Valid 6e").css("color","green");
                        }
}

为什么 === 而不是 == 在这里阅读 http://www.w3schools.com/js/js_comparisons.asp

希望能帮助到你!

于 2014-01-15T09:26:40.830 回答