微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

jquery – 选中的复选框属性为true,但不显示tick

我有两个复选框,我想让它们表现得像单选按钮(其中只有一个在时间检查).

所以,我很容易找到一个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>

但是当我点击其中一个复选框时,即使其“check”属性设置为“checked”,也不会显示勾号:

解决方法

您需要通过它的 property设置检查状态才能达到您想要的效果
$("input:checkBox").click(function(){
    var group = "input:checkBox[name='"+$(this).attr("name")+"']";
    $(group).prop("checked",false);
    $(this).prop("checked",true);
});

jsFiddle here.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐