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

让表格相邻行的颜色不同

时间:2015-02-08 23:23:55      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:间隔变色   tr间隔变色   间隔换色   相邻色不同   table tr渐变    

先看看效果:
技术分享

如何让表格相邻行的颜色不同呢?

如何让表格的行的颜色间隔不同呢?

表格的行间隔变色

有如下三种方式

方式一:使用纯css

table.dictionaryList tr:nth-child(2n+3){
    background-color:#c0e0f7;
}
table.dictionaryList tr:nth-child(2n+2){
    background-color:#defcfe;
}

说明:n从零开始:0,1,2,3....

没有包含表格的第一行,因为第一行是标题.

 

方式二:使用javascript脚本实现

$(function(){
        $(‘div.queryResultDiv table.productList tr:odd‘).addClass(‘odd‘);
        $(‘div.queryResultDiv table.productList tr:even‘).filter(‘:gt(0)‘).addClass(‘even‘); 
    })

以上js依赖jquery

方式三:使用javascript脚本

  function altRows(id){
                if(document.getElementsByTagName){

                    var table = document.getElementById(id);
                    var rows = table.getElementsByTagName("tr");

                    for(i = 0; i < rows.length; i++){
                        if(i % 2 == 0){
                            rows[i].className = "evenrowcolor";
                        }else{
                            rows[i].className = "oddrowcolor";
                        }
                    }
        }
    }

说明:参数id是表格的id属性值.

 

推荐方式一,使用纯css

参考:http://hw1287789687.iteye.com/blog/2184358

让表格相邻行的颜色不同

标签:间隔变色   tr间隔变色   间隔换色   相邻色不同   table tr渐变    

原文地址:http://huangkunlun520.blog.51cto.com/2562772/1612768

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