2015-08-21 18:24:09 +08:00
|
|
|
# 按钮样式
|
|
|
|
|
|
|
|
- order: 3
|
|
|
|
|
|
|
|
按钮样式的单选组合。
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Radio } from 'antd';
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-11-06 22:03:09 +08:00
|
|
|
ReactDOM.render(<div>
|
2016-01-21 22:45:21 +08:00
|
|
|
<div>
|
2016-01-19 15:09:28 +08:00
|
|
|
<RadioGroup onChange={onChange} defaultValue="a">
|
|
|
|
<RadioButton value="a">杭州</RadioButton>
|
|
|
|
<RadioButton value="b">上海</RadioButton>
|
|
|
|
<RadioButton value="c">北京</RadioButton>
|
|
|
|
<RadioButton value="d">成都</RadioButton>
|
|
|
|
</RadioGroup>
|
|
|
|
</div>
|
|
|
|
<div style={{ marginTop: 16 }}>
|
2015-11-06 22:03:09 +08:00
|
|
|
<RadioGroup onChange={onChange} defaultValue="a">
|
|
|
|
<RadioButton value="a">杭州</RadioButton>
|
2015-11-27 14:29:03 +08:00
|
|
|
<RadioButton value="b" disabled>上海</RadioButton>
|
2015-11-06 22:03:09 +08:00
|
|
|
<RadioButton value="c">北京</RadioButton>
|
|
|
|
<RadioButton value="d">成都</RadioButton>
|
|
|
|
</RadioGroup>
|
|
|
|
</div>
|
|
|
|
<div style={{ marginTop: 16 }}>
|
|
|
|
<RadioGroup disabled onChange={onChange} defaultValue="a">
|
|
|
|
<RadioButton value="a">杭州</RadioButton>
|
|
|
|
<RadioButton value="b">上海</RadioButton>
|
|
|
|
<RadioButton value="c">北京</RadioButton>
|
|
|
|
<RadioButton value="d">成都</RadioButton>
|
|
|
|
</RadioGroup>
|
|
|
|
</div>
|
2015-12-29 12:08:58 +08:00
|
|
|
</div>, mountNode);
|
2015-08-21 18:24:09 +08:00
|
|
|
````
|