zoukankan      html  css  js  c++  java
  • JS获取当前日期,并将其格式化为 YYYY-MM-DD

    相关代码:

    var myDate = new Date();
    myDate.getYear();        //获取当前年份(2位)
    myDate.getFullYear();    //获取完整的年份(4位,1970-????)
    myDate.getMonth();       //获取当前月份(0-11,0代表1月)
    myDate.getDate();        //获取当前日(1-31)
    myDate.getDay();         //获取当前星期X(0-6,0代表星期天)
    myDate.getTime();        //获取当前时间(从1970.1.1开始的毫秒数)
    myDate.getHours();       //获取当前小时数(0-23)
    myDate.getMinutes();     //获取当前分钟数(0-59)
    myDate.getSeconds();     //获取当前秒数(0-59)
    myDate.getMilliseconds();    //获取当前毫秒数(0-999)
    myDate.toLocaleDateString();     //获取当前日期
    var mytime=myDate.toLocaleTimeString();     //获取当前时间
    myDate.toLocaleString( );        //获取日期与时间

    获取当前日期

     //获取当前时间,格式YYYY-MM-DD
    getNowFormatDate() {
          var date = new Date()
          var seperator1 = '-'
          var year = date.getFullYear()
          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 = year + seperator1 + month + seperator1 + strDate
          return currentdate
    }

    获取当前日期时间

    //获取当前日期时间
    function curentTime()
        {
            var now = new Date();
    
            var year = now.getFullYear();       //
            var month = now.getMonth() + 1;     //
            var day = now.getDate();            //
    
            var hh = now.getHours();            //
            var mm = now.getMinutes();          //
            var ss = now.getSeconds();          //
    
            var clock = year + "-";
    
            if(month < 10)
                clock += "0";
    
            clock += month + "-";
    
            if(day < 10)
                clock += "0";
    
            clock += day + " ";
    
            if(hh < 10)
                clock += "0";
    
            clock += hh + ":";
            if (mm < 10)
                clock += '0';
            clock += mm + ":";
    
            if (ss < 10)
                clock += '0';
            clock += ss;
            return clock;
        }
    
        //定时执行setTime
        setInterval("setTime()",1000);
    
        //将id为currentTime的div更新为最新时间
        function setTime(){
            $('#currentTime').html(curentTime());
        }
  • 相关阅读:
    linux查询php.ini位置
    laravel打印完整SQL语句
    python识别图片中的文字
    python -使用pytesseract识别文字时遇到的问题
    python弹出选择文件的弹出窗获取文件方法
    python将字符串中多个空格换为一个空格
    python生成word文档
    linux下tar命令
    python使用xpath获取内容
    正则表达式匹配空行
  • 原文地址:https://www.cnblogs.com/joe235/p/13649748.html
Copyright © 2011-2022 走看看