我尝试在我的服务器中显示当前时间(它在我的服务器中的网页),但是当我打开网页时,我得到了运行该页面的计算机上的时间。
有没有办法做到这一点 ?
这是我的代码:
function startTime(){
var today=new Date();
var h=today.getHours();
var m=today.getMinutes();
var s=today.getSeconds();
m=checkTime(m);
s=checkTime(s);
$('#cTime').val(h+":"+m+":"+s);
t=setTimeout(function(){startTime()},500);
}
function checkTime(i){
if (i<10) {
i="0" + i;
}
return i;
}
谢谢你。