layuiTable根据返回的JSON内容改变指定行的颜色

table.render({
		...
		...
		...
       done: function (response) {
       
       //定位当前table视图
       var tableView = this.elem.next();

		//response.data获取后端返回的JSON格式数据
       $.each(response.data,function (index,item) {

			//逻辑判断
           if(item.status == "1"){
				//改变TR标签内字体颜色
               tableView.find('tbody tr[data-index="'+ index +'"]').css('color','#01AAED');
           }
       })

   	}
})

layuiTable根据返回的JSON内容改变指定行的颜色_第1张图片

你可能感兴趣的:(JavaScript)