admin管理员组文章数量:1414861
I have an HTML table and would like to change the row color every two rows, for two rows at a time. I don't mean selecting every other row using nth-child(even)
, which is all I keep seeing in my search engine results. I'm trying to set the background color of rows 1 and 2, then 5 and 6, then 9 and 10...and so on, leaving the other rows with the default white background.
I've tried using :nth-child(2n+b)
and I don't think it's possible using that pseudo-selector. The tables are dynamically generated and will fluctuate in row count, so hard coding is not an option.
Is there some sort of JavaScript way to do this?
I have an HTML table and would like to change the row color every two rows, for two rows at a time. I don't mean selecting every other row using nth-child(even)
, which is all I keep seeing in my search engine results. I'm trying to set the background color of rows 1 and 2, then 5 and 6, then 9 and 10...and so on, leaving the other rows with the default white background.
I've tried using :nth-child(2n+b)
and I don't think it's possible using that pseudo-selector. The tables are dynamically generated and will fluctuate in row count, so hard coding is not an option.
Is there some sort of JavaScript way to do this?
Share Improve this question edited May 27, 2014 at 21:16 lonesomeday 238k53 gold badges327 silver badges328 bronze badges asked May 27, 2014 at 21:01 abahlerabahler 991 silver badge13 bronze badges2 Answers
Reset to default 7It's definitely possible using CSS's :nth-child()
notation:
tr:nth-child(4n + 1) td,
tr:nth-child(4n + 2) td {
background-color: #ffa;
}
tr:nth-child(4n + 3) td,
tr:nth-child(4n + 4) td {
background-color: #f90;
}
JS Fiddle demo.
This is the solution for your problem in php. Hope you can convert it into your required javascript.
$n = "#666";
$c = 0;
$p = 0;
while($c < 9){
if($p%2 == 0){
$n = ($n == "#666")?"#FFF":"#666";
$p=0;
}
$c++;
}
本文标签: javascriptChanging table row color per two rowsStack Overflow
版权声明:本文标题:javascript - Changing table row color per two rows - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745208398a2647747.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论