关于jquery使用attr属性在复选框多选及取消多选时不能重复使用的问题解决方法(使用prop代替)
程序员文章站
2022-03-19 22:41:36
...
原代码只能使用一次,取消选择后不能再重复选择多项
$('#chbox').click(function () {
if($('#chbox').attr('checked')){
$('.colored-blue').attr("checked","checked");
}else{
$('.colored-blue').removeAttr('checked');
}
});
修改为下面代码则实现多次选择、取消
$('#chbox').click(function () {
if($('#chbox').prop('checked')){
$('.colored-blue').prop("checked","checked");
}else{
$('.colored-blue').removeAttr('checked');
}
});
上一篇: 查看ssh key
下一篇: 揭秘:妺喜、妲己、褒姒,哪个最受宠爱?