首页 > 代码库 > js获取服务器时间戳

js获取服务器时间戳

<!DOCTYPE html>

<html>

<head>

<title>ajax</title>

</head>

 

<body>

<script src="http://www.mamicode.com/js/dui.js"></script>

<script>

// 方法一

ajax(‘/‘, function (data, obj) {

  alert(obj.getResponseHeader("Date"));

});

 

// 方法二

var xmlhttp = null;

 

if (window.ActiveXObject) xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");

else xmlhttp = new XMLHttpRequest();

 

xmlhttp.open(‘get‘, "/", false);

xmlhttp.setRequestHeader(‘If-Modified-Since‘, ‘q‘);

xmlhttp.send();

 

var timestr = xmlhttp.getResponseHeader(‘Date‘);

var date = new Date(timestr);

alert(date);

</script>

</body>

</html>

js获取服务器时间戳