mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 08:09:13 +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
48 lines
1.2 KiB
Markdown
48 lines
1.2 KiB
Markdown
---
|
|
order: 3
|
|
title:
|
|
zh-CN: 按钮样式
|
|
en-US: radio style
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
按钮样式的单选组合。
|
|
|
|
## en-US
|
|
|
|
The combination of radio button style.
|
|
|
|
```jsx
|
|
import { Radio } from 'antd';
|
|
|
|
function onChange(e) {
|
|
console.log(`radio checked:${e.target.value}`);
|
|
}
|
|
|
|
export default () => (
|
|
<>
|
|
<Radio.Group onChange={onChange} defaultValue="a">
|
|
<Radio.Button value="a">Hangzhou</Radio.Button>
|
|
<Radio.Button value="b">Shanghai</Radio.Button>
|
|
<Radio.Button value="c">Beijing</Radio.Button>
|
|
<Radio.Button value="d">Chengdu</Radio.Button>
|
|
</Radio.Group>
|
|
<Radio.Group onChange={onChange} defaultValue="a" style={{ marginTop: 16 }}>
|
|
<Radio.Button value="a">Hangzhou</Radio.Button>
|
|
<Radio.Button value="b" disabled>
|
|
Shanghai
|
|
</Radio.Button>
|
|
<Radio.Button value="c">Beijing</Radio.Button>
|
|
<Radio.Button value="d">Chengdu</Radio.Button>
|
|
</Radio.Group>
|
|
<Radio.Group disabled onChange={onChange} defaultValue="a" style={{ marginTop: 16 }}>
|
|
<Radio.Button value="a">Hangzhou</Radio.Button>
|
|
<Radio.Button value="b">Shanghai</Radio.Button>
|
|
<Radio.Button value="c">Beijing</Radio.Button>
|
|
<Radio.Button value="d">Chengdu</Radio.Button>
|
|
</Radio.Group>
|
|
</>
|
|
);
|
|
```
|