码迷,mamicode.com
首页 > 编程语言 > 详细

javascript 获取服务时间

时间:2017-06-02 12:37:22      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:mon   ajaxsend   获取   func   全局   let   error   eth   ref   

用到了jquery的ajax方法,ajax自己写也可以。

具体用法

 

var setId = setInterval(function(){
var xhr = $.ajax({
type: ‘HEAD‘, // 获取头信息,type=HEAD即可
url : window.location.href,
complete: function( xhr,data ){
var date = new Date(xhr.getResponseHeader(‘Date‘))
console.log(date.getFullYear() + ‘-‘ + (date.getMonth()+1) + ‘-‘ + date.getDate() +‘ ‘ + date.getHours() + ‘:‘ + date.getMinutes() + ‘:‘ + date.getSeconds())
// if(date.getHours()==14 && date.getMinutes()>=0 && date.getSeconds()>=0){
// // clearInterval(setId)
// }
}
})
},1000)

 

ajax生命周期

// 1.ajaxStart(全局事件)
// 2.beforeSend
// 3.ajaxSend(全局事件)
// 4.success
// 5.ajaxSuccess(全局事件)
// 6.error
// 7.ajaxError (全局事件)
// 8.complete
// 9.ajaxComplete(全局事件)
// 10.ajaxStop(全局事件)

 

 



javascript 获取服务时间

标签:mon   ajaxsend   获取   func   全局   let   error   eth   ref   

原文地址:http://www.cnblogs.com/tongchuanxing/p/6932559.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!