http://www.cnblogs.com/hanwenhua/articles/3853352.html
js获
获取当前的日期时间 格式“yyyy-MM-dd HH:MM:SS”
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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.getFullYear() + seperator1 + month + seperator1 + strDate
+
" "
+ date.getHours() + seperator2 + date.getMinutes()
+ seperator2 + date.getSeconds();
return
currentdate;
}
|
本文介绍了一种使用JavaScript获取并格式化当前日期时间的方法。通过定义一个名为getNowFormatDate的函数,可以返回类似'yyyy-MM-dd HH:mm:ss'格式的日期时间字符串。此函数考虑了月份和日期的一位数情况,并进行了前导0处理。

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



