mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 08:09:13 +08:00
41 lines
696 B
Markdown
41 lines
696 B
Markdown
---
|
|
order: 2
|
|
title:
|
|
zh-CN: 不可用
|
|
en-US: Disabled
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
点击按钮切换可用状态。
|
|
|
|
## en-US
|
|
|
|
Click the button to toggle between available and disabled states.
|
|
|
|
```tsx
|
|
import { Button, InputNumber } from 'antd';
|
|
import React, { useState } from 'react';
|
|
|
|
const App: React.FC = () => {
|
|
const [disabled, setDisabled] = useState(true);
|
|
|
|
const toggle = () => {
|
|
setDisabled(!disabled);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<InputNumber min={1} max={10} disabled={disabled} defaultValue={3} />
|
|
<div style={{ marginTop: 20 }}>
|
|
<Button onClick={toggle} type="primary">
|
|
Toggle disabled
|
|
</Button>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
```
|