Home  >  Article  >  Web Front-end  >  js table alternate row color_javascript skills

js table alternate row color_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:40:451004browse

Just judge whether it is an odd number

and then set the background color of the lower row
if(i%2==1) row.style.background = "#CCCCff";
else row .style.background = "#CCCCCC";

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn