一个项目中小编需要限定用户选择的数量,这个明显需要通过js jquery来实现。直接贴出代码欢迎大家参考
function choiceItem(obj){
var arr = [];
$("input[name='choice[]']").each(function(){
if($(this).is(":checked")){
arr.push($(obj).val());
}
})
if(arr.length >= 2){
$("input[name='choice[]']").each(function(){
if($(this).is(":checked")){
$(this).removeAttr("disabled");
}else{
$(this).attr("disabled","true");
}
})
}else{
$("input[name='choice[]']").removeAttr("disabled");
}
}