下面代码用的是jQuery的写法:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="http://libs.baidu.com/jquery/1.7.2/jquery.min.js"></script>
</head>
<body>
</body>
<script type="text/javascript">
function getServerDate(){
return new Date($.ajax({async: false}).getResponseHeader("Date"));
}
var a = getServerDate();
console.log(a);
var b = JSON.stringify(a).replace(/(.)(?=T)./, '$1');
console.log(b);//晚八个小时
console.log(typeof a);//object
</script>
</html>
ajax需在服务器环境下请求,所以需要在服务器环境来运行这个html页面。