Skip to content

Instantly share code, notes, and snippets.

@52cik
Created March 31, 2016 03:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 52cik/3680872ebff0722ceafd321f0795c619 to your computer and use it in GitHub Desktop.
Save 52cik/3680872ebff0722ceafd321f0795c619 to your computer and use it in GitHub Desktop.
ajax 获取服务器日期
$.ajax('?', {type:'head'}).done(function(data, status, xhr) {
var dt = new Date(xhr.getResponseHeader('Date')); // 字符串转日期对象
console.log(dt.toLocaleString());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment