有没有任何想法为什么下面的代码保持警告为错误,尽管响应以 hello 的形式返回?
它应该警告为正确!
Tnanks
JQUERY
var term = 'jan';
$.ajax(
{
type : 'POST',
url : 'process.php',
data : 'term=' + term,
dataType : 'text',
timeout : 600000,
success : function(response)
{
if (response == 'hello')
{
alert('Correct');
}
else
{
alert('Wrong');
}
}
});
PHP
if ($_POST['term'] == 'jan')
{
echo 'hello';
}
else
{
echo 'noooo';
}
答案 0 :(得分:2)
您的返回结果中可能有空格。这可以通过修剪返回结果来解决
var term = 'jan';
$.ajax(
{
type : 'POST',
url : 'process.php',
data : 'term=' + term,
dataType : 'text',
timeout : 600000,
success : function(response)
{
if (response.trim() == 'hello')
{
alert('Correct');
}
else
{
alert('Wrong');
}
}
});