js获取当前的日期时间 格式“yyyy-MM-dd HH:MM:SS”
js中怎么获取系统当前时间 格式 yyyy-MM-dd HHMMSS
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;
}
本文标题:js中怎么获取系统当前时间 格式 yyyy-MM-dd HHMMSS
文章作者:xiaoqi
发布时间:2017-02-16, 14:31:39
最后更新:2017-02-17, 21:35:25
原始链接:http://m.xiaoqi888.cn/2017/02/16/js中怎么获取系统当前时间 格式 yyyy-MM-dd HHMMSS.html/
许可协议: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。