ant-design/components/date-picker/demo/time.md
2016-03-02 15:45:37 +08:00

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);