我有两个复选框,我想让它们表现得像单选按钮(其中只有一个在时间检查).
所以,我很容易找到一个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>
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。