我有两个复选框,我想让它们表现得像单选按钮(其中只有一个在时间检查).
所以,我很容易找到一个jQuery解决方案应该可以解决这个问题:
$("input:checkBox").click(function(){ var group = "input:checkBox[name='"+$(this).attr("name")+"']"; $(group).attr("checked",false); $(this).attr("checked",true); });
HTML看起来像这样:
<div class="radio"> <label for="q_is_active_true">Is active</label> <input name="radio_buttons" type="hidden" value="0"><input id="q_is_active_true" name="radio_buttons" type="checkBox" value="1"> <label for="q_is_active_false">Is not active</label> <input name="radio_buttons" type="hidden" value="0"><input id="q_is_active_false" name="radio_buttons" type="checkBox" value="1"> </div>