mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
728 B
728 B
order | title | ||||
---|---|---|---|---|---|
6 |
|
zh-CN
通过 hideDisabledOptions 将不可选的选项隐藏。
en-US
use hideDisabledOptions
to hide the disabled options.
import { TimePicker } from 'antd';
function newArray(start, end) {
const result = [];
for (let i = start; i < end; i++) {
result.push(i);
}
return result;
}
function disabledMinutes() {
return newArray(0, 60).filter(value => value % 10 !== 0);
}
function disabledSeconds() {
return newArray(0, 60).filter(value => value % 30 !== 0);
}
ReactDOM.render(
<TimePicker disabledMinutes={disabledMinutes} disabledSeconds={disabledSeconds} hideDisabledOptions />
, mountNode);