jQuery交替行颜色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery交替行颜色相关的知识,希望对你有一定的参考价值。
This one is simple yet very useful. You can do alternating row colors with 2 simple lines of jQuery
//jquery $('div:odd').css("background-color", "#F4F4F8"); $('div:even').css("background-color", "#EFF1F1"); //html example <div>Row 1</div> <div>Row 2</div> <div>Row 3</div> <div>Row 4</div> //you can use td, tr, li, etc..
以上是关于jQuery交替行颜色的主要内容,如果未能解决你的问题,请参考以下文章
C#/VB.NET 如何在Excel中使用条件格式设置交替行颜色