ant-design/components/date-picker/demo/time.md
afc163 43d8c0a4a2 Fix DatePicker onChange and onOk when showTime
onChange should be triggered at clicking ok button
when showTime is true. You can use onChange replace onOk
anytime.

This commit revert a05b4e6, which break the behavious above.

close #2399, also fix #2120
2016-07-15 16:26:14 +08:00

630 B

order title
4
zh-CN en-US
日期时间选择 To choose time

zh-CN

增加选择时间功能,当 showTime 为一个对象时,其属性会传递给内建的 TimePicker

en-US

This property provide an additional time selection. When showTime is an Object, its properties will be passed on to TimePicker, witch is a built-in function.

import { DatePicker } from 'antd';

function onChange(value) {
  console.log('选择了时间:', value);
}

ReactDOM.render(
  <DatePicker showTime format="yyyy-MM-dd HH:mm:ss" placeholder="请选择时间" onChange={onChange} />
, mountNode);