zoukankan      html  css  js  c++  java
  • js时间日期类常用方法

           var date = new Date()
            console.log(date.getDate()); // 一个月里的第几天
            console.log(date.getFullYear()); //
            console.log(date.getMonth()+1); //
            console.log(date.getDay()); // 星期几
            console.log(date.getHours()); //
            console.log(date.getMinutes()); //
            console.log(date.getSeconds()); //
            console.log(date.toLocaleString()); // 2020/7/2 14:44:19
            console.log(date.toLocaleDateString()); // 2020/7/2
            console.log(date.toLocaleTimeString()); // 14:44:19
    
            //  格式化日期为 YYYYMMDD
            function getNowFormatDate() {
                var date = new Date();
                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 = {};
                currentdate.month = year.toString() + "-" + month.toString();
                currentdate.date = year.toString() + "-" + month.toString() + "-" + strDate.toString();
                currentdate.onlyYear = year.toString();
                currentdate.onlyMonth = month.toString();
                currentdate.onlyDate = strDate.toString();
                return currentdate;
            }
            console.log(getNowFormatDate());
            console.log(getNowFormatDate().date); // 2020-07-02
            console.log(getNowFormatDate().month); // 07-02

    getNowFormatDate()方法打印的结果截图

  • 相关阅读:
    指定pdf的格式
    iptables 防火墙
    jumpserver2
    jquery UI
    python 自动化审计
    Jumpserver
    认识二进制安全与漏洞攻防技术 (Windows平台)
    将这段美化的css代码
    pycharm
    android Tips
  • 原文地址:https://www.cnblogs.com/luguankun/p/13224725.html
Copyright © 2011-2022 走看看