You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
414 B

---
order: 4
title: 日期时间选择
---
9 years ago
增加选择时间功能,当 `showTime` 为一个对象时,其属性会传递给内建的 `TimePicker`
10 years ago
````jsx
import { DatePicker } from 'antd';
10 years ago
function onChange(value) {
console.log('选择了时间:', value);
}
ReactDOM.render(
<DatePicker showTime format="yyyy-MM-dd HH:mm:ss" placeholder="请选择时间" onChange={onChange} />
, mountNode);
10 years ago
````