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.

35 lines
673 B

# 不可用
9 years ago
- order: 2
点击按钮切换可用状态。
---
````jsx
var InputNumber = antd.InputNumber;
var Test = React.createClass({
getInitialState() {
return {
disabled: true
};
},
toggle() {
this.setState({
disabled: !this.state.disabled
});
},
render() {
return <div>
<InputNumber min={1} max={10} disabled={this.state.disabled} defaultValue={3} />
<div style={{marginTop: 20}}>
<button onClick={this.toggle} className="ant-btn ant-btn-primary">Toggle disabled</button>
</div>
</div>;
}
});
React.render(<Test />, document.getElementById('components-input-number-demo-disabled'));
````