0

是否知道为什么下面的代码会一直提示错误,尽管响应返回为hello

它应该提醒正确

坦克

查询

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';
}
4

1 回答 1

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');
        }
    }
});
于 2012-08-31T08:14:26.653 回答