mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
594 B
594 B
order | title | ||||
---|---|---|---|---|---|
7 |
|
zh-CN
12 小时制的时间选择器,默认的 format 为 h:mm:ss a
。
en-US
TimePicker of 12 hours format, with default format h:mm:ss a
.
import { TimePicker } from 'antd';
function onChange(time, timeString) {
console.log(time, timeString);
}
ReactDOM.render(
<>
<TimePicker use12Hours onChange={onChange} />
<TimePicker use12Hours format="h:mm:ss A" onChange={onChange} style={{ width: 140 }} />
<TimePicker use12Hours format="h:mm a" onChange={onChange} />
</>,
mountNode,
);