Một số hàm jquery hữu ích


1.  jQuery get array of checked checkboxes ids

1
2
3
4
5
6
var checkedIds = Array();
$('form:input[type="checkbox"][checked]').each( function(i,v)
{
    checkedIds.push($(v).attr('id'));
});
console.log(checkedIds);

 

Tiếp tục đọc