如何从jQuery DataTable中的所有页面中获取所有复选框的选中值
以不同的方式尝试
$('.btnprimary').click(function () {
$('input[type="checkbox"]').each(function(){
if(this.checked){
alert($(this).attr('data-voucgerid'));
}
});
});
我需要在datatable分页中检查所有复选框我在做什么错误
现在我只能获得一页复选框值。
答案 0 :(得分:0)
您可以使用fnGetNodes()函数:
$('input[type=checkbox]:checked', table.fnGetNodes());
table是你的jquery数据表。