2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 3
|
2016-07-21 10:10:04 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 按钮样式
|
2016-09-01 18:12:12 +08:00
|
|
|
en-US: radio style
|
2017-02-20 22:04:17 +08:00
|
|
|
---
|
2016-07-21 10:10:04 +08:00
|
|
|
|
|
|
|
## zh-CN
|
2015-08-21 18:24:09 +08:00
|
|
|
|
|
|
|
按钮样式的单选组合。
|
|
|
|
|
2016-07-21 10:10:04 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
The combination of radio button style.
|
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
```jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Radio } from 'antd';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2015-08-21 18:24:09 +08:00
|
|
|
function onChange(e) {
|
2016-02-17 18:04:42 +08:00
|
|
|
console.log(`radio checked:${e.target.value}`);
|
2015-08-21 18:24:09 +08:00
|
|
|
}
|
|
|
|
|
2022-04-03 23:27:45 +08:00
|
|
|
export default () => (
|
2020-03-30 22:14:13 +08:00
|
|
|
<>
|
|
|
|
<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>
|
2022-04-03 23:27:45 +08:00
|
|
|
</>
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2016-07-21 10:10:04 +08:00
|
|
|
```
|