当前位置:首页 > js > layui

layui table tr根据数据修改样式_修改tr背景颜色

2023-05-08 来源:无名网 作者:网络转载
table.render({
    elem: '#demo'
    ,url: url //数据接口
    ,title: title
    done:function(res){
        console.log(res);
        res.data.forEach(function (item,index) {
        //如果是置顶,修改这行文字颜色
        if(item.x3 == 388611){
            $(".layui-table-body tbody tr[data-index='"+index+"']").css({'backgroundColor': "#72ff00" });
            }
         });
      }
});

layui数据表格根据数据类型修改table tr的样式,已验证可用。

相关内容:
  • 上一篇:没有了
  • 下一篇:没有了
『 猜你喜欢 』