mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-18 03:14:07 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
46 lines
742 B
Markdown
46 lines
742 B
Markdown
---
|
|
order: 2
|
|
title:
|
|
zh-CN: 不可用
|
|
en-US: Disabled
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
点击按钮切换可用状态。
|
|
|
|
## en-US
|
|
|
|
Click the button to toggle between available and disabled states.
|
|
|
|
```jsx
|
|
import { InputNumber, Button } from 'antd';
|
|
|
|
class App extends React.Component {
|
|
state = {
|
|
disabled: true,
|
|
};
|
|
|
|
toggle = () => {
|
|
this.setState({
|
|
disabled: !this.state.disabled,
|
|
});
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<>
|
|
<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>
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default () => <App />;
|
|
```
|