6
Không thể đặt đúng tiêu đề Chấp nhận HTTP với jQuery
Tôi đang cố đặt tiêu đề Accept HTTP thành "text / xml" với mã jquery này: $.ajax({ beforeSend: function(req) { req.setRequestHeader("Accept", "text/xml"); }, type: "GET", url: "[proper url]", contentType: "text/plain; charset=utf-8", dataType: ($.browser.msie) ? "text" : "xml", username: '---', password: '-------', success: function(data) { var xml; if (typeof data == …