jquery – 将复选框(多个选项)转换为单选按钮或复选框?

前端之家收集整理的这篇文章主要介绍了jquery – 将复选框(多个选项)转换为单选按钮或复选框?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有以下复选框列表.输出列表的方式允许用户选择多个值.但是,我只需要允许用户从下面的复选框列表中选择一个值.

有可能用jQuery以某种方式实现这一点吗?将列表更改为单选按钮,选择列表或其他可能有用的内容也是可以的.

不幸的是我无法访问生成函数,所以我无法更改输出.

提前致谢

Box" class="form-checkBox" value="1" id="edit-notifications-custom-custom-berlin" name="notifications_custom[custom_berlin]"> BerlinBox" class="form-checkBox" value="1" id="edit-notifications-custom-custom-hamburg" name="notifications_custom[custom_hamburg]"> HamburgBox" class="form-checkBox" value="1" id="edit-notifications-custom-custom-frankfurt-am-main" name="notifications_custom[custom_frankfurt-am-main]"> Frankfurt am MainBox" class="form-checkBox" value="1" id="edit-notifications-custom-custom-duesseldorf" name="notifications_custom[custom_duesseldorf]"> DüsseldorfBox" class="form-checkBox" value="1" id="edit-notifications-custom-custom-bielefeld" name="notifications_custom[custom_bielefeld]"> BielefeldBox" class="form-checkBox" value="1" id="edit-notifications-custom-custom-muenchen" name="notifications_custom[custom_muenchen]"> München

asdasd

最佳答案
$('.form-checkBox').bind('click',function() {
    $('.form-checkBox').not(this).attr('checked',false);
});

已编辑以优化性能.

原文链接:https://www.f2er.com/jquery/427898.html

猜你在找的jQuery相关文章