0

到目前为止,我有以下代码,但我遇到了一个问题,如果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;
             }
        })
4

1 回答 1

1

代码可能类似于:

    $("input[type='checkbox']").each(function(){
         if ($(this).is(":checked")) 
         {
            checkbox.push($(this).data("id"));
            $state = 1; 
         }else{
            $state = 0;
         }
    })
于 2013-09-28T02:16:09.430 回答