function getNowFormatDate() {
var date = new Date();
var seperator1 = '-';
var seperator2 = ':';
var month = date.getMonth() + 1;
var strDate = date.getDate();
if (month >= 1 && month <= 9){
month
= '0' + month;
}
if (strDate >= 0 && strDate <= 9){
strDate
= '0' +strDate;
}
var currentdate = date.getYear() + seperator1 +month + seperator1 + strDate
+ ' ' +date.getHours() + seperator2 + date.getMinutes()
+seperator2 + date.getSeconds();
return currentdate;
}
}
本文介绍了一个JavaScript函数,该函数用于获取并格式化当前的日期和时间。格式化的日期时间包括年、月、日、小时、分钟及秒,并使用特定的分隔符进行连接。

被折叠的 条评论
为什么被折叠?



