我们无法在请求标头中看到。好像不是服务器问题。它主要来自客户端/浏览器。
$(document).ready(function(e) {
$.ajax({
url: form_url,
type: form_method,
data: form_data,
cache: false,
headers: {'date': (new Date()).toUTCString()},
success: function(returnhtml){
$("#result").html(returnhtml);
$("#loadingimg").hide();
}
});
});
http://jsfiddle.net/ddtxra/60wme3pf/
这是一个错误吗?