ant-design/components/time-picker/index.md

37 lines
1.2 KiB
Markdown
Raw Normal View History

# TimePicker
2015-11-16 23:11:41 +08:00
- category: Components
- chinese: 时间选择框
- type: 表单
---
输入或选择时间的控件。
何时使用
--------
当用户需要输入一个时间,可以点击标准输入框,弹出时间面板进行选择。
API
---
```html
<TimePicker defaultValue="13:30:56" />
2015-11-16 23:11:41 +08:00
```
2015-11-17 23:44:32 +08:00
| 参数 | 说明 | 类型 | 默认值 |
|-----------------|-----|-----|-------|
2015-12-08 14:55:28 +08:00
| defaultValue | 初始默认时间 | string | 无 |
| value | 默认时间 | string | 无 |
2015-11-17 23:44:32 +08:00
| placeholder | 没有值的时候显示的内容 | string | "请选择时间" |
2015-11-19 19:09:51 +08:00
| onChange | 时间发生变化的回调 | function(Date value) | 无 |
2015-11-17 23:44:32 +08:00
| format | 展示的时间格式 | string | "HH:mm:ss"、"HH:mm"、"mm:ss" |
| disabled | 禁用 | bool | false |
| hourOptions | 特定可选择的小时 | array | 0 到 24 组成的数组 |
2015-11-16 23:11:41 +08:00
| minuteOptions | 特定可选择的分钟 | array | 0 到 60 组成的数组 |
| secondOptions | 特定可选择的秒 | array | 0 到 60 组成的数组 |
2015-12-08 14:55:28 +08:00
| locale | 国际化配置 | Object | [默认配置](https://github.com/ant-design/ant-design/issues/424) |
2015-11-16 23:11:41 +08:00
2015-12-11 19:58:41 +08:00
<style>.code-box-demo .ant-time-picker { margin: 0 8px 12px 0; }</style>