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

42 lines
1.4 KiB
Markdown
Raw Normal View History

# DatePicker
2015-05-21 20:36:13 +08:00
2015-06-02 12:11:49 +08:00
- category: Components
2015-05-21 22:24:19 +08:00
- chinese: 日期选择框
2015-08-22 20:16:24 +08:00
- type: 表单
2015-05-21 20:36:13 +08:00
---
2015-11-19 14:28:54 +08:00
输入或选择日期的控件。
2015-06-14 17:54:08 +08:00
## 何时使用
2015-11-19 14:28:54 +08:00
当用户需要输入一个日期,可以点击标准输入框,弹出日期面板进行选择。
2015-05-27 20:41:16 +08:00
2015-08-25 14:15:46 +08:00
## API
2015-06-08 13:01:43 +08:00
```html
<DatePicker defaultValue="2015-01-01" />
2015-05-29 22:25:04 +08:00
```
2015-12-23 19:09:31 +08:00
> 注意:`0.11+` 后 `Datepicker` 改名为 `DatePicker`。
2015-07-08 14:55:05 +08:00
| 参数 | 说明 | 类型 | 默认值 |
|--------------|----------------|----------|--------------|
| value | 日期 | string | 无 |
2015-08-06 12:23:49 +08:00
| defaultValue | 默认日期 | string | 无 |
2015-07-08 14:55:05 +08:00
| format | 展示的日期格式 | string | "yyyy-MM-dd" |
| disabledDate | 不可选择的日期 | function | 无 |
2015-11-19 15:53:40 +08:00
| onChange | 时间发生变化的回调,发生在用户选择时间时 | function(Date value) | 无 |
2015-07-08 14:55:05 +08:00
| disabled | 禁用 | bool | false |
2015-11-20 21:05:46 +08:00
| style | 自定义输入框样式 | object | {} |
| popupStyle | 格外的弹出日历样式 | object | {} |
2015-08-31 16:45:03 +08:00
| size | 输入框大小,`large` 高度为 32px`small` 为 22px默认是 28px | string | 无 |
2015-10-23 23:50:26 +08:00
| locale | 国际化配置 | object | [默认配置](https://github.com/ant-design/ant-design/issues/424) |
2015-06-02 17:06:50 +08:00
2015-05-27 20:41:16 +08:00
<style>
2015-08-03 16:57:03 +08:00
.code-box-demo .ant-calendar-picker {
2015-11-19 14:28:54 +08:00
margin: 0 8px 12px 0;
2015-08-03 16:57:03 +08:00
}
2015-05-27 20:41:16 +08:00
</style>