我有一組複選框,它們具有data-groupid
和data-multichoice
屬性。根據「數據」屬性啓用或禁用複選框
組1:data-groupid= "1" data=multichoice="0"
(10盒)
組2:data-groupid= "2" data=multichoice="0"
(10盒)
如何取消在一個組中的所有箱子一次?
//function will catch any click on any checkbox with class=lvl
$('.lvl').click(function() {
//check if box was checked
if ($(this).is(":checked")) {
//check if data-attribute is NOT a multi-choice
if (!($(this).data("multichoice"))) {
//disable all checkboxes that have the same group-id
$(this).data("groupid") ... HELP HERE
}
}
});
你爲什麼不使用無線電盒代替 –