这是我的代码,用于检查是否存在电子邮件.... 我没有得到任何回应。 所以请提供一些关于这个问题的解决方案。还有另一个文件,其中检查数据库中的电子邮件..但是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>
check.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.
}
?>
但我无法获得正确的输出。 任何回应都没有到来。
答案 0 :(得分: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
希望它有所帮助!