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

39 lines
800 B
Markdown
Raw Normal View History

2015-07-17 16:06:46 +08:00
# RadioGroup组合
- order: 1
RadioGroup 组合。
---
````jsx
var Radio = antd.Radio;
2015-07-17 16:43:20 +08:00
var RadioGroup = antd.RadioGroup;
2015-07-17 16:06:46 +08:00
2015-07-17 16:43:20 +08:00
var App = React.createClass({
2015-07-17 16:06:46 +08:00
getInitialState: function () {
return {
2015-07-21 16:18:27 +08:00
value: 'a'
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({
2015-07-21 16:18:27 +08:00
value: e.target.value
});
2015-07-17 16:06:46 +08:00
},
render() {
return<div>
2015-07-20 22:36:49 +08:00
<RadioGroup onChange={this.onChange} value={this.state.value}>
<Radio value="a">A</Radio>
2015-07-21 16:18:27 +08:00
<Radio value="b">B</Radio>
<Radio value="c">C</Radio>
<Radio value="d">D</Radio>
2015-07-17 16:06:46 +08:00
</RadioGroup>
2015-07-21 16:18:27 +08:00
<div style={{marginTop: 20}}>你选中的: {this.state.value}</div>
2015-07-17 16:06:46 +08:00
</div>
}
});
2015-07-17 16:43:20 +08:00
React.render(<App />, document.getElementById('components-radio-demo-radiogroup'));
2015-07-17 16:06:46 +08:00
````