var getNowFormatDate = function() {
    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 hours = date.getHours();
 if (hours >= 0 && hours <= 9) {
        hours = "0" + hours;
    }
 var minutes = date.getMinutes();
 if (minutes >= 0 && minutes <= 9) {
        minutes = "0" + minutes;
    }
 var seconds = date.getSeconds();
 if (seconds >= 0 && seconds <= 9) {
        seconds = "0" + seconds;
    }
    var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
            + " " + hours + seperator2 + minutes+ seperator2 + seconds;
    return currentdate;
};

相关文章:

  • 2021-10-08
  • 2021-11-28
  • 2022-12-23
  • 2021-07-20
  • 2022-12-23
  • 2021-09-30
  • 2022-12-23
  • 2021-05-22
猜你喜欢
  • 2021-08-12
  • 2021-08-26
  • 2022-12-23
  • 2022-02-03
  • 2022-12-23
  • 2022-02-09
  • 2021-11-28
相关资源
相似解决方案