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