You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
435 B

# 范围
- order: 3
设置 `disabledDate` 方法,来确定不可选时段。
10 years ago
如上例:不可选择今天之后的日期。
---
````jsx
var Datepicker = antd.Datepicker;
var disabledDate = function(current, value) {
// can not select days after today
return current.getTime() > Date.now();
};
React.render(
<Datepicker disabledDate={disabledDate} />
, document.getElementById('components-datepicker-demo-range'));
````