博客
关于我
layui数据表格偶数行背景颜色
阅读量:166 次
发布时间:2019-02-28

本文共 519 字,大约阅读时间需要 1 分钟。

,limits:[10,20,30,40,50,60,70,80,90],done: function (res, curr, count) {// 表格渲染完成之后的回调    var that = this.elem.next();    res.data.forEach(function (item, index) {        //console.log(item.empName);item表示每列显示的数据        if (index % 2 == 0) {            var tr = that.find(".layui-table-box tbody tr[data-index='" + index + "']").css("background-color", "#fff");        } else {            var tr = that.find(".layui-table-box tbody tr[data-index='" + index + "']").css("background-color", "#f7f7f7");        }    });}})

转载地址:http://mukj.baihongyu.com/

你可能感兴趣的文章
pycharm报错“ModuleNotFoundError: No module named 'pymysql'”
查看>>
服务器间共享挂载操作
查看>>
Problem F: 零起点学算法106——首字母变大写
查看>>
Problem H: 计算数列和2/1,3/2,5/3,8/5......
查看>>
QT之深入理解QThread
查看>>
如何快速调试 sCrypt 单元测试错误
查看>>
C/C++中的字符串4个库函数
查看>>
201604-4 游戏 ccf
查看>>
1144. The Missing Number (20)
查看>>
Java之StringUtils的常用方法
查看>>
为什么阿里巴巴不建议在for循环中使用”+”进行字符串拼接
查看>>
【Spring Boot 26】分别在SpringBoot和Vue中解决跨域问题
查看>>
Class.forName(),classloader.loadclass用法详解
查看>>
tp5.1 页面错误!请稍后再试~ 安装好后,提示错误
查看>>
查看Nginx 服务器 php错误日志log
查看>>
php if条件 switch
查看>>
阿里云 安全组规则 设置某个IP不能访问服务器(出站)
查看>>
表示换行
查看>>
JS调用新闻
查看>>
取得刚刚添加记录的ID
查看>>