ant-design/components/timepicker/index.md

34 lines
1.4 KiB
Markdown
Raw Normal View History

2015-11-16 23:11:41 +08:00
TimePicker
==========
- category: Components
- chinese: 时间选择框
- type: 表单
---
输入或选择时间的控件。
何时使用
--------
当用户需要输入一个时间,可以点击标准输入框,弹出时间面板进行选择。
API
---
```html
<TimePicker value="13:30:56" />
```
| 参数 | 说明 | 类型 | 默认值 |
|---------------|---------------------------------------------------------------|----------|-----------------------------------------------------------------|
| defaultValue | 默认时间 | string | 无 |
| format | 展示的时间格式 | string | "HH:mm:ss"、"HH:mm"、"mm:ss" |
| disabled | 禁用 | bool | false |
| hourOptions | 特定可选择的小时 | array | 0 到 24 组成的数组 |
| minuteOptions | 特定可选择的分钟 | array | 0 到 60 组成的数组 |
| secondOptions | 特定可选择的秒 | array | 0 到 60 组成的数组 |
<style> .code-box-demo .ant-timepicker-picker { margin: 0 12px 12px 0; }</style>