Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用Javascript突出显示/更改所有偶数行gridview的CSS。怎么可能?
(它只通过 JavaScript 而不是 jQuery 或网格主题)
一些CSS怎么样:
tr:nth-child(even) {background: red}
你可以计算行数,如果当前行(计数器)可以被 2 整除,那么它是偶数,那就是你添加 css 的时候。
否则,请在样式表上使用 CSS 选择器。“tr:nth-child(偶数)”