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-10-28 20:55:49 +08:00
|
|
|
const RadioButton = Radio.Button;
|
|
|
|
const RadioGroup = Radio.Group;
|
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
|
|
|
}
|
|
|
|
|
2017-10-09 13:23:20 +08:00
|
|
|
ReactDOM.render(
|
2016-01-21 22:45:21 +08:00
|
|
|
<div>
|
2017-10-09 13:23:20 +08:00
|
|
|
<div>
|
|
|
|
<RadioGroup onChange={onChange} defaultValue="a">
|
|
|
|
<RadioButton value="a">Hangzhou</RadioButton>
|
|
|
|
<RadioButton value="b">Shanghai</RadioButton>
|
|
|
|
<RadioButton value="c">Beijing</RadioButton>
|
|
|
|
<RadioButton value="d">Chengdu</RadioButton>
|
|
|
|
</RadioGroup>
|
|
|
|
</div>
|
|
|
|
<div style={{ marginTop: 16 }}>
|
|
|
|
<RadioGroup onChange={onChange} defaultValue="a">
|
|
|
|
<RadioButton value="a">Hangzhou</RadioButton>
|
|
|
|
<RadioButton value="b" disabled>Shanghai</RadioButton>
|
|
|
|
<RadioButton value="c">Beijing</RadioButton>
|
|
|
|
<RadioButton value="d">Chengdu</RadioButton>
|
|
|
|
</RadioGroup>
|
|
|
|
</div>
|
|
|
|
<div style={{ marginTop: 16 }}>
|
|
|
|
<RadioGroup disabled onChange={onChange} defaultValue="a">
|
|
|
|
<RadioButton value="a">Hangzhou</RadioButton>
|
|
|
|
<RadioButton value="b">Shanghai</RadioButton>
|
|
|
|
<RadioButton value="c">Beijing</RadioButton>
|
|
|
|
<RadioButton value="d">Chengdu</RadioButton>
|
|
|
|
</RadioGroup>
|
|
|
|
</div>
|
2018-06-27 15:55:04 +08:00
|
|
|
</div>,
|
|
|
|
mountNode);
|
2016-07-21 10:10:04 +08:00
|
|
|
```
|