zoukankan      html  css  js  c++  java
  • 获取当前的日期时间的js函数,格式为“yyyy-MM-dd hh:mm:ss”

     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 <= 9) {
    10         month = "0" + month;
    11     }
    12     var strDate = date.getDate();
    13     if (strDate >= 0 && strDate <= 9) {
    14         strDate = "0" + strDate;
    15     }
    16     var hour = date.getHours();
    17     if (hour >= 0 && hour <= 9) {
    18         hour = "0" + hour;
    19     }
    20     var minute = date.getMinutes();
    21     if (minute >= 0 && minute <= 9) {
    22         minute = "0" + minute;
    23     }
    24     var sec = date.getSeconds();
    25     if (sec >= 0 && sec <= 9) {
    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 }
  • 相关阅读:
    离线缓存之RNCachingURLProtocol解析
    Element demo解析
    GHUnit+OCMock
    XCTest+XCTool
    day1`4整理
    day4 笔记
    day3
    day1
    day2
    Python学习(二)——Python基础
  • 原文地址:https://www.cnblogs.com/qiushuiblog/p/7093226.html
Copyright © 2011-2022 走看看