5

我创建了一个 AJAX 请求。在新的浏览器中它工作正常,但 IE7 告诉我行中的字符有错误,在哪里 function: 'gettestvaraibles'。有人可以告诉我错误可能在哪里吗?

$.ajax('http://testurl/?eID=testid', {
    data: {
        function: 'gettestvaraibles',
        game_id: '630',
        game_score: '50'
    },
    type: 'post',
    dataType: 'json',
    error: function(jqXHR, textStatus, errorThrown) {
        console.log(jqXHR);
        alert(errorThrown.message);
    },
    success: function() {
    }
});
4

2 回答 2

6

函数是保留关键字。您需要更改它,或者用引号括起来:

data: {
    "function": 'gettestvaraibles',
    "game_id": '630',
    "game_score": '50'
},
于 2012-04-12T07:48:02.583 回答
1

您应该在 周围加上引号function,因为它是 JavaScript 中的关键字:

data: {
       'function': 'gettestvaraibles',
       'game_id': '630',
       'game_score': '50'
}
于 2012-04-12T07:47:52.803 回答