这是代码(已导入JQuery):
$.post("check.php", { username: usr },
function(result)
{
//if the result is 1
if(result == 1)
{
//show that the username is available
$('#ck_usr_rslt').html(username + ' is Available');
}
else
{
//show that the username is NOT available
$('#chk_usr_rslt').html(username + ' is not Available');
}
});
问题是,我的check.php脚本不断抛出以下错误:
PHP Notice: Undefined index: username in /Applications/MAMP/htdocs/RP/check.php on line 23
(第23行是调用$ _POST ['username']的时候)
那有什么不对?可能是我正在运行的本地服务器是问题吗?或者这只是我在JavaScript中的一些错误?
答案 0 :(得分:0)
似乎“usr”变量是空的(这是一个javascript而不是php),你能告诉我们如何检索那个变量吗?