获取上/下/当前周的第一天和最后一天的时间戳

function getWeek() {
        //getWeekType()这个方法如果不传参数 或者传入0,返回的是本周的日期范围
        //如果要下周的范围则传入1,上周的传入-1;
        //注:这个是从周一开始算一周的开始,周日为结束。
        console.log('this', this)
                this.nowTime = new Date();
                this.init = function() {
                    this.dayInWeek = this.nowTime.getDay();
                    this.dayInWeek == 0 && (this.dayInWeek = 7);
                    this.thsiWeekFirstDay = this.nowTime.getTime() - (this.dayInWeek - 1) * 86400000;
                    this.thisWeekLastDay = this.nowTime.getTime() + (7 - this.dayInWeek) * 86400000;
                    return this;
                };
                this.getWeekType = function(type) {
                    type = ~~type;
                    var firstDay = this.thsiWeekFirstDay + type * 7 * 86400000;
                    var lastDay = this.thisWeekLastDay + type * 7 * 86400000;
                    return this.getWeekHtml(firstDay, lastDay);
                }
                this.formateDate = function(time) {
                    var newTime = new Date(time)
                    var year = newTime.getFullYear();
                    var month = newTime.getMonth() + 1;
                    var day = newTime.getDate();
                    return year + "-" + (month >= 10 ? month : "0" + month) + "-" + (day >= 10 ? day : "0" + day);
                };
                this.getWeekHtml = function(f, l) {
                    return this.formateDate(f) + "," + this.formateDate(l);
                };
            }
``
调用 

        function contrastTime(){
            console.log('this',this)
            //此处this 将指向window
            var getWeek =  new this.getWeek();
            var week = getWeek.init().getWeekType(1).split(",");
            var startWeekTime = new Date(week[0]).getTime();
            var endWeekTime = new Date(week[1]).getTime();
            console.log('startWeekTime', startWeekTime)
            console.log('endWeekTime', endWeekTime)

        }
        
        调用拿到下周第一天的时间戳跟最后一天的时间戳
    window.onload = function(){
        contrastTime() 
        

    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值