私はreactjsに新しいです。現在私のアプリケーションでは、ラジオボタンの選択時にボタンを有効または無効にしたいと考えています。ラジオボタンの選択時にボタンを有効/無効にする方法は?
class Radiosample extends React.Component {
render() {
<table>
<tbody>
<tr>
<td>
<Field name="radio1" component="input" id="radio1" type="radio"/> // On check of this radio button below button should enable..
</td>
<Button name="button" id="btn">Click Me</Button>
</tr>
</tbody>
</table>
}
}
export default Radiosample
おかげ
[ReactJSの動的属性](http://stackoverflow.com/questions/29103096/dynamic-attribute-in-reactjs)の可能な複製 – juancab