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

38 lines
643 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
title: 不可用
---
2015-07-15 16:13:00 +08:00
点击按钮切换可用状态。
2016-03-31 09:40:55 +08:00
2015-07-15 16:13:00 +08:00
````jsx
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 {
disabled: true
2015-07-15 16:13:00 +08:00
};
},
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} type="primary">Toggle disabled</Button>
</div>
2015-07-20 20:03:45 +08:00
</div>
);
2015-07-15 16:13:00 +08:00
}
});
ReactDOM.render(<Test />, mountNode);
2015-07-15 16:13:00 +08:00
````