其他分享
首页 > 其他分享> > antd disabledDate 选择禁用特定的时间范围

antd disabledDate 选择禁用特定的时间范围

作者:互联网

disabledDate = (time) => {
const date = new Date(指定的时间) // 获取指定的时间并标准化
return time < moment().year(date.getFullYear()).month(date.getMonth()).date(date.getDate() - 1) || time > moment().year(date.getFullYear()).month(date.getMonth()).date(date.getDate()).add(6, 'd')
}

指定的日期范围,只能用moment()来限制
moment().year() 设置日期
moment().month() 月份 0~11
moment().date() 天 1~31

我上面写的范围是禁用了 (指定时间 包含当天的往后共7天的时间) 之外的日期

标签:禁用,time,指定,month,date,moment,year,disabledDate,antd
来源: https://www.cnblogs.com/chenyuanxi/p/16336983.html