//显示、隐藏
$('input[type="checkbox"]').on('ifChecked', function(){
$("#tab-"+$(this).val()).show();
});
$('input[type="checkbox"]').on('ifUnchecked', function(){
$("#tab-"+$(this).val()).hide();
});
//全选、反选
$('#text_box').on('ifChecked', function(event){
$('input').iCheck('check');
});
$('#text_box').on('ifUnchecked', function(event){
$('input').iCheck('uncheck');
});
阅读(2993) | 评论(0) | 转发(0) |