--- order: 6 title: zh-CN: 不可选择日期和时间 en-US: Disabled Date & Time --- ## zh-CN 可用 `disabledDate` 和 `disabledTime` 分别禁止选择部分日期和时间,其中 `disabledTime` 需要和 `showTime` 一起使用。 ## en-US Disabled part of dates and time by `disabledDate` and `disabledTime` respectively, and `disabledTime` only works with `showTime`. ```tsx import { DatePicker, Space } from 'antd'; import type { RangePickerProps } from 'antd/es/date-picker'; import dayjs from 'dayjs'; import customParseFormat from 'dayjs/plugin/customParseFormat'; import React from 'react'; dayjs.extend(customParseFormat); const { RangePicker } = DatePicker; const range = (start: number, end: number) => { const result = []; for (let i = start; i < end; i++) { result.push(i); } return result; }; // eslint-disable-next-line arrow-body-style const disabledDate: RangePickerProps['disabledDate'] = current => { // Can not select days before today and today return current && current < dayjs().endOf('day'); }; const disabledDateTime = () => ({ disabledHours: () => range(0, 24).splice(4, 20), disabledMinutes: () => range(30, 60), disabledSeconds: () => [55, 56], }); const disabledRangeTime: RangePickerProps['disabledTime'] = (_, type) => { if (type === 'start') { return { disabledHours: () => range(0, 60).splice(4, 20), disabledMinutes: () => range(30, 60), disabledSeconds: () => [55, 56], }; } return { disabledHours: () => range(0, 60).splice(20, 4), disabledMinutes: () => range(0, 31), disabledSeconds: () => [55, 56], }; }; const App: React.FC = () => ( ); export default App; ```