-1
這是我的代碼。結果是正確的,並在Chrome和Firefox中工作,但在Internet Explorer中,我變成了beforesend行中的此錯誤(':'預期)。這個錯誤會阻止我的腳本。我嘗試了一個onload函數document.onload和window.onload,但它不修復這個問題。jQuery.ajax beforeSend錯誤IE11
jQuery.ajax({
url: '/test',
beforeSend(xhr){
},
success: function (data, textStatus){
$('#test2').html(data);
},
async: true
});
:function'在那裏。 –
使用與「成功」處理程序相同的格式。 –