为了账号安全,请及时绑定邮箱和手机立即绑定

如何禁用今天之前的日期 React?

如何禁用今天之前的日期 React?

ABOUTYOU 2022-09-02 10:52:58
我正在尝试禁用今天之前的日期,因此无法选择它。代码如下:https://codesandbox.io/s/simple-react-calendar-r1h3b?file=/src/calendar.tsx如何实施?
查看完整描述

1 回答

?
aluckdog

TA贡献1847条经验 获得超7个赞

我在这里禁用了过去的日期:https://codesandbox.io/s/simple-react-calendar-1n9zk?file=/src/calendar.tsx:2706-2718


const Day = styled.div`

// ...


  ${props =>

      props.isPast &&

      css`

        color: #eee;

        pointer-events: none;

      `}


// ...

`

export function Calendar() {

// ...

             <Day

                key={index}

                isToday={d === today.getDate()}

                isPast={new Date(year, month, d) < today}

                isSelected={d === day}

                onClick={() => setDate(new Date(year, month, d))}

              >

                {d > 0 ? d : ''}

              </Day>

// ...

}


查看完整回答
反对 回复 2022-09-02
  • 1 回答
  • 0 关注
  • 83 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信