mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 07:39:36 +08:00
623 B
623 B
order | title | ||||
---|---|---|---|---|---|
4 |
|
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
, which is a built-in function.
import { DatePicker } from 'antd';
function onChange(value) {
console.log('Selected Time: ', value);
}
ReactDOM.render(
<DatePicker showTime format="YYYY-MM-DD HH:mm:ss" placeholder="Select Time" onChange={onChange} />
, mountNode);