页面显示当前时间
Posted 馳騁衿琾
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了页面显示当前时间相关的知识,希望对你有一定的参考价值。
$.ajax({
type: "POST",
url: ctx.path+‘/api/hPage/getLocalTime.json‘,
traditional: true,
dataType: "json",
success: function(data){
if(data.rs==1){
var local_time=data.data;
var a=new Date(local_time);
timer(a);
}else{
layer.msg(‘获取服务器时间失败!‘, {icon: 0});
}
}
});
function timer(local_time){
setTimeout(function(){
T=T-1+2;
var date=new Date(local_time.getTime()+T*1000);
var year=date.getFullYear();
var month=date.getMonth()+1;
var day=date.getDate();
var hour=date.getHours();
var minute=date.getMinutes();
var second=date.getSeconds();
if(second<=9) second="0"+second;
if(minute<=9) minute="0"+minute;
if(hour<=9) hour="0"+hour;
var c=year+‘年‘+month+‘月‘+day+‘日‘+hour+‘:‘+minute+‘:‘+second;
$("#times").html(c);
timer(local_time);
},1000);
}
以上是关于页面显示当前时间的主要内容,如果未能解决你的问题,请参考以下文章