layui table 点击行

  table.on('row(myTable)', function(obj){
    // 在这里处理行点击事件,obj是事件相关信息
    // 例如,打印行的数据:
    console.log(obj.data);
    // 执行其他操作...
    
    // 注意:如果需要防止行点击后默认的蓝色背景效果,可以使用obj.tr.find('.layui-table-cell').css('background-color', 'transparent');
  });

 

posted @ 2024-12-04 16:41  microsoft-zhcn  阅读(5)  评论(0编辑  收藏  举报