ant-design/components/input-number/demo/disabled.md

44 lines
766 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
2016-08-18 15:59:07 +08:00
title:
zh-CN: 不可用
en-US: Disabled
2016-03-31 09:40:55 +08:00
---
2015-07-15 16:13:00 +08:00
2016-08-18 15:59:07 +08:00
## zh-CN
点击按钮切换可用状态。
## en-US
Click the button to toggle between available and disabled states.
2015-07-15 16:13:00 +08:00
2017-01-19 15:19:03 +08:00
````__react
import { InputNumber, Button } from 'antd';
2015-07-15 16:13:00 +08:00
const Test = React.createClass({
2015-07-15 16:13:00 +08:00
getInitialState() {
return {
2016-05-11 09:32:33 +08:00
disabled: true,
2015-07-15 16:13:00 +08:00
};
},
toggle() {
this.setState({
2016-05-11 09:32:33 +08:00
disabled: !this.state.disabled,
2015-07-15 16:13:00 +08:00
});
},
render() {
return (
<div>
<InputNumber min={1} max={10} disabled={this.state.disabled} defaultValue={3} />
<div style={{ marginTop: 20 }}>
<Button onClick={this.toggle} type="primary">Toggle disabled</Button>
</div>
2015-07-20 20:03:45 +08:00
</div>
);
2016-05-11 09:32:33 +08:00
},
2015-07-15 16:13:00 +08:00
});
ReactDOM.render(<Test />, mountNode);
2015-07-15 16:13:00 +08:00
````