在表单中,我们可以通过onclick属性,动态的判断单选按钮的有效性。
e。g
<input name="y" type="radio" onClick="m.checked=false;" value=1 checked>有
<input type="radio" name="m" onclick="y.checked=false;" value="2">无
通过这样设置,可以使得当“有”被选中是,让“无”没有被选中,反过来亦然。
另外,我们也可以设置其它的地一些动作
e。g
<input name="w" type="radio" onClick="button.disabled=false;" value=1 checked>有
<input type="radio" name="w" onclick="button.disabled=true;" value="2">无
<input id="button" type="button" value="提交">
这样设置,使得当选中“有"的时候,提交按钮有效,当选中"无"的时候,提交按钮无效。