`

js 设置隔行显示颜色

 
阅读更多

     <script>
var tbl = document.getElementById("td1");
for(var i=0;i<tbl.rows.length;i++){
  if(i%2 == 0) tbl.rows[i].style.backgroundColor = "#FFF";
  else tbl.rows[i].style.backgroundColor = "#FF0000";
}
</script>

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics