Datatables事件

DataTables格式化渲染加上的html代码按一般方式绑定事件可能会没效果,通过以下方式可以解决

 $(document).on("click","#checkchild",function(){
var check = $(this).prop("checked");
if(check && check==true){
$(this).prop("checked",false);
}else{
$(this).prop("checked",true);
}
checkButton();
});

选中行事件

 $("#mytable tbody").on("click","tr",function(){
var check = $(this).find(".checkchild").prop("checked");
if(check && check==true){
$(this).find('.checkchild').prop("checked",false);
}else{
$(this).find('.checkchild').prop("checked",true);
}
checkButton(); });
上一篇:Java中main函数只能调用同类中的静态方法?


下一篇:android Gui系统之SurfaceFlinger(1)---SurfaceFlinger概论