到目前为止,我有以下代码,但我遇到了一个问题,如果data-id
尚未将其设置为,那如何创建“状态” checked
?
代码:
$("input[type='checkbox']").each(function(){
if ($(this).is(":checked")) checkbox.push($(this).data("id"))
})
我在想这样的事情:
$("input[type='checkbox']").each(function(){
if ($(this).is(":checked")) checkbox.push($(this).data("id"))
{
$state = 1;
}else{
$state = 0;
}
})