码迷,mamicode.com
首页 > 其他好文 > 详细

layui table指定某一行样式

时间:2019-11-05 13:32:53      阅读:578      评论:0      收藏:0      [点我收藏+]

标签:http   this   cti   status   选择   bar   back   tail   ons   

想指定layui table中某一行的样式,找了这个资源可行。转自: https://blog.csdn.net/weixin_44729896/article/details/100524824

table.render({
          elem: "#test",
          // id: "table_cell_data",
          url: "http://localhost:3000/all",
          toolbar: "#toolbarDemo", //指向自定义工具栏模板选择器
          defaultToolbar: [], //除去打印,导出
          title: "用户数据表",
          cols: [[ ]],
          page: false,
          done: function (res, curr, count) {
            console.log(res.data);
            merge(res);
            var that = this.elem.next();
            console.log(this.elem)
            console.log(that)
            res.data.forEach(function (item, index) {
                if (item.accstatus === "封禁") {
                  var tr = that.find(".layui-table-box tbody tr[data-index='" + index + "']");
                  tr.css("background-color", "yellow");
                  tr.find(".laytable-cell-1-0-9").css("color","red");

                } 
            });
          }
        });

效果如下图:
技术图片

layui table指定某一行样式

标签:http   this   cti   status   选择   bar   back   tail   ons   

原文地址:https://www.cnblogs.com/newcapecjmc/p/11797714.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!