zoukankan      html  css  js  c++  java
  • js 获取本周开始结束时间,本月开始结束时间等....

    var now = new Date(); // 当前日期
    var nowDayOfWeek = now.getDay(); // 今天本周的第几天
    var nowDay = now.getDate(); // 当前日
    var nowMonth = now.getMonth(); // 当前月
    var nowYear = now.getYear(); // 当前年
    nowYear += (nowYear < 2000) ? 1900 : 0;
     
    var DateUtil = {
        /**
         * 获得当前日期
         * 
         * @returns
         */
        getNowDay() {
            return this.formatDate(new Date());
        },
        /**
         * 获得本周的开始时间
         * 
         * @returns
         */
        getStartDayOfWeek() {
            var day = nowDayOfWeek || 7;
            return this.formatDate(new Date(now.getFullYear(), nowMonth, nowDay + 1 - day));
        },
        /**
         * 获得本周的结束时间
         * 
         * @returns
         */
        getEndDayOfWeek() {
            var day = nowDayOfWeek || 7;
            return this.formatDate(new Date(now.getFullYear(), nowMonth, nowDay + 7 - day));
        },
        /**
         * 获得本月的开始时间
         * 
         * @returns
         */
        getStartDayOfMonth() {
            var monthStartDate = new Date(nowYear, nowMonth, 1);
            return this.formatDate(monthStartDate);
        },
        /**
         * 获得本月的结束时间
         * 
         * @returns
         */
        getEndDayOfMonth() {
            var monthEndDate = new Date(nowYear, nowMonth, this.getMonthDays());
            return this.formatDate(monthEndDate);
        },
        /**
         * 获得本月天数
         * 
         * @returns
         */
        getMonthDays() {
            var monthStartDate = new Date(nowYear, nowMonth, 1);
            var monthEndDate = new Date(nowYear, nowMonth + 1, 1);
            var days = (monthEndDate - monthStartDate) / (1000 * 60 * 60 * 24);
            return days;
        },
        /**
         * @param 日期格式化
         * @returns {String}
         */
        formatDate(date) {
            var myyear = date.getFullYear();
            var mymonth = date.getMonth() + 1;
            var myweekday = date.getDate();
     
            if (mymonth < 10) {
                mymonth = "0" + mymonth;
            }
            if (myweekday < 10) {
                myweekday = "0" + myweekday;
            }
            return (myyear + "-" + mymonth + "-" + myweekday);
        }
    };
    
    export default{
        DateUtil
    }
  • 相关阅读:
    VS2019添加引用,对COM组件的调用错误
    ArcPy批量选择指定属性的要素
    使用ArcMap批量处理线悬挂问题
    Springboot 允许跨域的方法
    博客搬至CSDN
    Java项目中修复Apache Shiro 默认密钥致命令执行漏洞(CVE-2016-4437)详细说明
    ES index type 概述
    为什么有些人钱花了而赚不到钱呢?
    后台管理系统模板
    resolv.conf search openstacklocal novalocal
  • 原文地址:https://www.cnblogs.com/tlfe/p/12124204.html
Copyright © 2011-2022 走看看