onblur用户名可用性检查

时间:2012-12-09 16:30:36

标签: jquery ajax

我正在使用jquery ajax进行模糊的用户名可用性

respose可以进入firebug

我的问题是装载图像一直在旋转。

firebug控制台中的

ReferenceError: finishAjax未定义

setTimeout(“finishAjax('Info','”+ escape(response)+“')”,450); 这是它

<script type="text/javascript" src="jquery-1.3.2.js"></script>
<link href="css.css" media="screen" rel="stylesheet" type="text/css" />

<script type="text/javascript">

function check_username() {

$.post("check_username_availablity.php", {
username: $('#name').val(),
}, function(response){
//$('#Info').fadeOut();
//$('#Loading').hide();
setTimeout("finishAjax('Info', '"+escape(response)+"')", 450);
});

function finishAjax(id, response) {

$('#'+id).html(unescape(response));
//$('#'+id).fadeIn(1000);
}

}
</script>

</head>
<?php
include('dbcon.php');?>
<body>

<form action="#" name="customForm" id="customForm" method="post" enctype="multipart/form-data">

<div class="both">
<h4> Try "Zeeshan" , "John" , "Katty", "Jimmy" </h4><br clear="all" /><br clear="all" />
<br clear="all" />
<div>
<label>User Name</label>
<input id="name" name="username" type="text" value="" onblur="check_username()"/>
<div id="Info"></div>
<span id="Loading"><img src="loader.gif" alt="" /></span>
</div>
</div>

</form>

</body>
</html>


<?php
include('dbcon.php');
if($_REQUEST)
{
$username   = $_REQUEST['username'];
$query = "select * from register where username = '".strtolower($username)."'";
$results = mysql_query( $query) or die('ok');

if(mysql_num_rows(@$results) > 0) // not available
{
echo '<div id="Error">Already Taken</div>';
}
else
{
echo '<div id="Success">Available</div>';
}

}?>

谢谢..

2 个答案:

答案 0 :(得分:1)

你需要将函数名称传递给setTimeout而不是调用它,或者你可以使用匿名函数来调用它的函数。

setTimeout(function(){
     finishAjax('Info', escape(response))
}
, 450);​

答案 1 :(得分:1)

如果您使用setTimeout,则您的函数需要关闭响应变量。试试这个:

function(response){
    setTimeout(function(){
        finishAjax('Info', escape(response));
    }, 
    450);
});