获取当前的日期时间的js函数,格式为“yyyy-MM-dd hh:mm:ss”
2021-07-09 15:04
标签:amp s函数 函数 == gets 日期 func js函数 return 获取当前的日期时间的js函数,格式为“yyyy-MM-dd hh:mm:ss” 标签:amp s函数 函数 == gets 日期 func js函数 return 原文地址:http://www.cnblogs.com/qiushuiblog/p/7093226.html 1 //获取当前的日期时间函数,格式为“yyyy-MM-dd hh:mm:ss”
2 function getNowFormatDate(date) {
3 if (date == null) {
4 var date = new Date();
5 }
6 var seperator1 = "-";
7 var seperator2 = ":";
8 var month = date.getMonth() + 1;
9 if (month >= 1 && month ) {
10 month = "0" + month;
11 }
12 var strDate = date.getDate();
13 if (strDate >= 0 && strDate ) {
14 strDate = "0" + strDate;
15 }
16 var hour = date.getHours();
17 if (hour >= 0 && hour ) {
18 hour = "0" + hour;
19 }
20 var minute = date.getMinutes();
21 if (minute >= 0 && minute ) {
22 minute = "0" + minute;
23 }
24 var sec = date.getSeconds();
25 if (sec >= 0 && sec ) {
26 sec = "0" + sec;
27 }
28 var currentdate = date.getFullYear() + seperator1 + month + seperator1
29 + strDate + " " + hour + seperator2 + minute
30 + seperator2 + sec;
31 return currentdate;
32 }
上一篇:js获取当前日期和时间的代码
文章标题:获取当前的日期时间的js函数,格式为“yyyy-MM-dd hh:mm:ss”
文章链接:http://soscw.com/index.php/essay/102825.html