mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 04:36:19 +08:00
fb0b4f0fc9
* docs: add api first appearance * docs: fix auto-complete doc * docs: replace Version Added with Version * docs: date picker common method * docs: date picker common method * docs: tree * docs: remove meaningless 3.0.0
40 lines
1.2 KiB
Markdown
40 lines
1.2 KiB
Markdown
---
|
|
category: Components
|
|
subtitle: 数字输入框
|
|
type: 数据录入
|
|
title: InputNumber
|
|
---
|
|
|
|
通过鼠标或键盘,输入范围内的数值。
|
|
|
|
## 何时使用
|
|
|
|
当需要获取标准数值时。
|
|
|
|
## API
|
|
|
|
属性如下
|
|
|
|
| 成员 | 说明 | 类型 | 默认值 | 版本 |
|
|
| --- | --- | --- | --- | --- |
|
|
| autoFocus | 自动获取焦点 | boolean | false | |
|
|
| defaultValue | 初始值 | number | | |
|
|
| disabled | 禁用 | boolean | false | |
|
|
| formatter | 指定输入框展示值的格式 | function(value: number \| string): string | - | |
|
|
| max | 最大值 | number | Infinity | |
|
|
| min | 最小值 | number | -Infinity | |
|
|
| parser | 指定从 formatter 里转换回数字的方式,和 formatter 搭配使用 | function( string): number | - | |
|
|
| precision | 数值精度 | number | - | |
|
|
| decimalSeparator | 小数点 | string | - | 3.10.0 |
|
|
| size | 输入框大小 | string | 无 | |
|
|
| step | 每次改变步数,可以为小数 | number\|string | 1 | |
|
|
| value | 当前值 | number | | |
|
|
| onChange | 变化回调 | Function(value: number \| string) | | |
|
|
|
|
## 方法
|
|
|
|
| 名称 | 描述 | 版本 |
|
|
| ------- | -------- | ---- |
|
|
| blur() | 移除焦点 | |
|
|
| focus() | 获取焦点 | |
|