mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
389 B
389 B
日期时间选择
- order: 4
增加选择时间功能。不要修改时间的格式 HH:mm:ss
。
import { DatePicker } from 'antd';
function onChange(value) {
console.log('选择了时间:', value);
}
ReactDOM.render(
<DatePicker showTime format="yyyy-MM-dd HH:mm:ss" placeholder="请选择时间" onChange={onChange} style={{ width: 160 }} />
, mountNode);