所以在视觉上他们有正确的行为。一组中只有一个单选按钮被选中,并且复选框选中/取消选中以响应按下它,但在检查控制台中的输入状态时似乎并非如此。所以我有:
<input id="addon-fixed" type="checkbox" value=True checked />
<input id="addon-type0" name="addon-type" type="radio" checked/>Addon<br>
<input id="addon-type1" name="addon-type" type="radio"/>Cutout
但无论我点击什么,行为总是一样的
$('#addon-fixed').attr('checked') // always there
$('#addon-type0').attr('checked') // always there
$('#addon-type1').attr('checked') // always undefined