我创建了一个 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() {
}
});