fbpx

首页 » JS » 正文

JS获取当前时间

function getTime() {
var now= new Date(),
h=now.getHours(),
m=now.getMinutes(),
s=now.getSeconds(),
ms=now.getMilliseconds();
return (h+”:”+m+”:”+s+ ” ” +ms);
}

发表评论

Captcha Code