js获取当前时间
Posted wjinhhua
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取当前时间相关的知识,希望对你有一定的参考价值。
function getCurrentDate()
var date = new Date();
var seperator1 = "-";
var seperator2 = ":";
var month = date.getMonth() + 1;
var day = date.getDate();
var hours = date.getHours();
var minutes = date.getMinutes();
var seconds = date.getSeconds();
if (month >= 1 && month <= 9)
month = "0" + month;
if (day >= 0 && day <= 9)
day = "0" + day;
if (hours >= 0 && hours <= 9)
hours = "0" + hours;
if (minutes >= 0 && minutes <= 9)
minutes = "0" + minutes;
if (seconds >= 0 && seconds <= 9)
seconds = "0" + seconds;
var currentdate = date.getFullYear() + seperator1 + month + seperator1 + day
+ " " + hours + seperator2 + minutes
+ seperator2 + seconds;
return currentdate;
以上是关于js获取当前时间的主要内容,如果未能解决你的问题,请参考以下文章