我嘗試使用下一個示例來檢查用戶名可用性,但我無法收到我想要的.post的結果。使用jQuery使用ajax檢查用戶名可用性
http://web.enavu.com/tutorials/checking-username-availability-with-ajax-using-jquery/
在接下來的代碼中,警報()顯示我的PHP文件,但我只是想爲0或1,以瞭解是否存在用戶是否:
//use ajax to run the check
$.post("check_username.php", { username: username },
function(result){ alert(result);
//if the result is 1
if(result == 1){
//show that the username is available
$('#username_availability_result').html(username + ' is Available');
}else{
//show that the username is NOT available
$('#username_availability_result').html(username + ' is not Available');
}
});
非常感謝!
警報說什麼? –
它顯示.php文件,alert()窗口中的所有代碼。 var username = $('#username')。val();之後的 – Sadiel
警報(用戶名)並檢查您發送的值是什麼。你在帖子後得到的警報是什麼? – sreeprasad