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

39 lines
719 B
Markdown
Raw Normal View History

2015-08-21 18:24:09 +08:00
# RadioGroup 组合
2015-07-17 16:06:46 +08:00
- order: 1
2015-08-21 18:24:09 +08:00
一组互斥的 Radio 配合使用。
2015-07-17 16:06:46 +08:00
---
````jsx
import { Radio } from 'antd';
const RadioGroup = Radio.Group;
2015-07-17 16:06:46 +08:00
const App = React.createClass({
getInitialState() {
2015-07-17 16:06:46 +08:00
return {
2016-03-04 12:07:17 +08:00
value: 1,
2015-07-17 16:06:46 +08:00
};
},
2015-07-21 16:18:27 +08:00
onChange(e) {
console.log('radio checked', e.target.value);
2015-07-17 16:06:46 +08:00
this.setState({
2016-03-04 12:07:17 +08:00
value: e.target.value,
2015-07-21 16:18:27 +08:00
});
2015-07-17 16:06:46 +08:00
},
render() {
return (
2016-03-04 12:07:17 +08:00
<RadioGroup onChange={this.onChange} value={this.state.value}>
<Radio key="a" value={1}>A</Radio>
<Radio key="b" value={2}>B</Radio>
<Radio key="c" value={3}>C</Radio>
<Radio key="d" value={null}>D</Radio>
</RadioGroup>
);
2015-07-17 16:06:46 +08:00
}
});
2016-03-04 12:07:17 +08:00
ReactDOM.render(<App />, mountNode);
2015-07-17 16:06:46 +08:00
````