zoukankan      html  css  js  c++  java
  • 前端两三问

    1、js 获取当前日期星期几

    getWeek(time) {
        let weekDay = ["周日","周一", "周二", "周三", "周四", "周五", "周六"];    
        let myDate = new Date(Date.parse(time));  
        return weekDay[myDate.getDay()]
    },
    
    console.log(getWeek('2019-09-11')   // 周三
    

    2、iveiw 时间限制今天之前不可选

    <Date-picker 
      type="date" 
      :options="pickerOptionsStart" 
    ></Date-picker>
    
    pickerOptionsStart: {
      disabledDate (time) {
        return time.getTime() < new Date(new Date().toLocaleDateString()).getTime();
      }
    }
    

    3、js 计算某个时间 前 15天 后15天

    function GetDateStr(AddDayCount, date, type) { 
    		var dd = new Date(date);
    		dd.setDate(dd.getDate()+AddDayCount);
    		var y = dd.getFullYear(); 
    		var m = (dd.getMonth()+1)<10?"0"+(dd.getMonth()+1):(dd.getMonth()+1);
    		var d = dd.getDate()<10?"0"+dd.getDate():dd.getDate();
    		if(type){
    			if(date === this.oldTime) {
    				return '今天'
    			} else {
    				return d
    			}
    		} else {
    			return y + "-" + m + "-" + d; 
    		}
    }
    
    GetDateStr(-14, '2019-09-12')  //  2019-08-29 
    GetDateStr(14, '2019-09-12')  //  2019-09-26
  • 相关阅读:
    SpringBoot 整合Shiro
    Shiro 学习
    SpringBoot 整合security、thymeleaf
    【SpringBoot__Mybatis】整合MyBatis 配置文件版2
    SpringBoot 配置Druid数据源及监控
    lombok 使用
    thymeleaf 常用
    随机模块
    md5加密
    python正则
  • 原文地址:https://www.cnblogs.com/lieone/p/11556473.html
Copyright © 2011-2022 走看看