You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design/components/date-picker/demo/time.md

20 lines
359 B
Markdown

# 日期时间选择
10 years ago
- order: 4
增加选择时间功能。不要修改时间的格式 `HH:mm:ss`
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" onChange={onChange} style={{ width: 160 }} />
, mountNode);
10 years ago
````