其他分享
首页 > 其他分享> > antd DatePicker不可选范围

antd DatePicker不可选范围

作者:互联网

废话不多说,上代码

// DOM
<DatePicker style={{ width: '100%' }} disabledDate={disableDateOfMonth} picker="month" />

// 方法
// 不可用逻辑校验
  const disableDateOfMonth = (current) => {
    return !(
      // 判断是否有值
      current
      // 判断当前时间大于某个时间
      && current > new Date(“某个时间')
      // 判断当前时间是否小于当前月+六个月的时间
      && current < new Date(moment().subtract(-6, 'months').format())
    );
  };

代码仅供参考,如有错误,欢迎指出。

标签:DatePicker,不可,new,current,时间,&&,disableDateOfMonth,Date,antd
来源: https://blog.csdn.net/qq_34955596/article/details/121015225