You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
308 B

10 years ago
# 基本
- order: 0
数字输入框
---
````jsx
var InputNumber = antd.InputNumber;
function onChange(value) {
console.log('changed', value);
10 years ago
}
React.render(
<InputNumber min={1} max={10} defaultValue={3} onChange={onChange} />
, document.getElementById('components-input-number-demo-basic'));
10 years ago
````