我在 AJAX 中遇到问题,称其在 Firefox 和 chrome 中工作正常,但在 IE 中却没有,并且不断出现错误功能:
$.ajax({
type: 'post',
url: requestUrl,
data: {
presentation_id: id_here,
application_ids: selectedAppIDs.join(',')
},
dataType: 'json',
success: function (data) {
},
error: function (er) {
},
complete: function () {
}
});
我错过了什么吗?