ant-design/components/radio/demo/radiobutton.md

48 lines
1.2 KiB
Markdown
Raw Normal View History

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