obj.tr.find('.layui-form-checkbox').addClass('layui-form-checked'); } //var checkStatus = table.checkStatus('test'); }); 这个方式,只是为checkbox添加样式,通过 table.checkStatus('ifrTbl'); 检查并不能获取勾选数据。 //单击行勾选checkbox事件 $(document).on("click", ".layui-table-body...
上述代码是再table.render中的, 如果把form.render();(2)注释掉:每次点击checkbox都会alert(1); 但是我想刷新layui样式,所以加上form.render();就只能触发一次alert(1),再次点击checkbox时,就没有反应了。。
//单击行勾选checkbox事件$(document).on("click",".layui-table-body table.layui-table tbody tr", function () { var index = $(this).attr('data-index'); var tableBox = $(this).parents('.layui-table-box'); //存在固定列 if (tableBox.find("....
$(document).on("click", "td div.laytable-cell-checkbox div.layui-form-checkbox", function (e) { e.stopPropagation(); }); 实现原理:找到table的div绑定单击事件到表格的行: 1、取得行的索引data-index,为后面查找checkbox的控件作准备 2、根据是否有固定列查找checkbox所在的表格table(当存在固定列时,...
layui实现点击table复选框时,为其添加背景色 1、样式 1.tr_bj_color{2background-color:#FFE7BA !important;3} 2、监听table复选框点击事件 1table.on('checkbox(test)',function(obj) {23//全选时4if(obj.type == "all") {5if(obj.checked) {//全选中6varcheckStatus = table.checkStatus('id...
* 复选框的点击事件 * 主要操作为: * 将所有的勾选成功的id储存传入后台拉取数据存到本地销售数据库 */table.on('checkbox(sale-data)',function(obj){//console.log(obj.type); //如果触发的是全选,则为:all,如果触发的是单选,则为:one//全选或单选数据集不一样vardata='one'===obj.type?[obj....
监听复选框选择:点击复选框时触发,回调函数返回一个object参数 table.on(‘checkbox(test)’,function(obj){ console.log(obj.checked);//当前是否选中状态 console.log(obj.data);//选中行的相关数据 console.log(obj.type);//如果触发的是全选,则为:all,如果触发的是单选,则为:one ...
其实layui table checkbox是有选中事件的table.on('checkbox(personTable)', function(obj){var data =...
layui.table.on('row(operateEvent)',function(obj){vartableDiv;varindex=$(obj.tr.selector).attr('data-index');vartableBox=$(obj.tr.selector).parents('.layui-table-box');//存在固定列if(tableBox.find(".layui-table-fixed.layui-table-fixed-l").length>0){tableDiv=tableBox.find(".la...
layui中table表格下checkbox保存状态赋值checkbox与禁止使用表头多选 保存状态赋值varcheckedSetnewSet();table.on(\'checkbox(dataguid1Table)\',function(obj){console.log(obj.checked);当前是否选中状态console.log(obj.data);选中... 解析数据,数据,赋值 ...