//전체
$('#tbodyList input[type=checkbox]').length;
//체크된것만
$('#tbodyList input[type=checkbox]:checked').length;
//체크안된것만
$('#tbodyList input[type=checkbox]:not(:checked)').length;


화면 전체에 체크박스를 체크하고싶으면 #tbodyList 제거하면 됩니다.

+ Recent posts