通過JQuery ajax獲取伺服器時間

Leckun發表於2018-10-22

通過JQuery ajax獲取伺服器時間,突然發現IE有相容問題,原來是忽略了引數type引起的,因此需要加上type:'HEAD’或者type:'POST’即可。

<script> 
//方式一
$.ajax({type:'HEAD', async: false})
 .success(function(data, status, xhr)
{
   var t=xhr.getResponseHeader('Date');
   alert(t);
 });

//方式二
var d = new Date($.ajax({type:'HEAD',async: false}).getResponseHeader("Date"));
 //同步請求

alert(d);

</script>

參考:
https://www.cnblogs.com/xioruu/p/6197203.html
https://www.oschina.net/code/snippet_274186_27329

相關文章