ant-design/components/time-picker/demo/disable-options.md
2016-07-26 11:03:44 +08:00

45 lines
771 B
Markdown

---
order: 5
title:
zh-CN: 禁止选项
en-US: Specify the time that cannot be selected
---
## zh-CN
限制选择 `20:30``23:30` 这个时间段。
## en-US
You can't select the time from `20:30` to `23:30`.
````jsx
import { TimePicker } from 'antd';
function newArray(start, end) {
const result = [];
for (let i = start; i < end; i++) {
result.push(i);
}
return result;
}
function disabledHours() {
const hours = newArray(0, 60);
hours.splice(20, 4);
return hours;
}
function disabledMinutes(h) {
if (h === 20) {
return newArray(0, 31);
} else if (h === 23) {
return newArray(30, 60);
}
return [];
}
ReactDOM.render(
<TimePicker disabledHours={disabledHours} disabledMinutes={disabledMinutes} />
, mountNode);
````