js 表格隔行颜色_javascript技巧
程序员文章站
2022-04-17 11:21:37
...
通过判断是否为单数即可
然后设置下行的背景颜色就可以了
if(i%2==1) row.style.background = "#CCCCff";
else row.style.background = "#CCCCCC";
然后设置下行的背景颜色就可以了
if(i%2==1) row.style.background = "#CCCCff";
else row.style.background = "#CCCCCC";
上一篇: css怎样实现字母不到一行就换行