mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 08:19:37 +08:00
771 B
771 B
order | title | ||||
---|---|---|---|---|---|
5 |
|
zh-CN
限制选择 20:30
到 23:30
这个时间段。
en-US
You can't select the time from 20:30
to 23:30
.
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);