$(function () { $('#exampleTable').on('uncheck.bs.table check.bs.table check-all.bs.table uncheck-all.bs.table',function(e,rows){ var datas = $.isArray(rows) ? rows : [rows]; // 点击时获取选中的行或取消选中的行 examine(e.type,datas); // 保存到全局 Array() 里 }); })//examp…