Home >Web Front-end >JS Tutorial >JavaScript code for Table to change color on alternate rows_javascript skills

JavaScript code for Table to change color on alternate rows_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:11:49847browse

Effect demonstration code:


[Ctrl A Select all Note:If you need to introduce external Js, you need to refresh to execute it
]

Core code: The code is as follows:


function showtable(){
var color1 = "rgb(234,240,255 )";
var color2 = "rgb(255,255,255)";
var bgColor = "rgb(255,255,193)";
var trs = document.getElementById("datatable").getElementsByTagName("tr") ;
for (var i=0;iif (i%2==0) {
trs[i].style.backgroundColor=color1;
trs[i].onmouseover = function(){
this.style.backgroundColor = bgColor;
}
trs[i].onmouseout = function(){
this.style.backgroundColor = color1;
}
} else {
trs[i].style.backgroundColor=color2;
trs[i].onmouseover = function(){
this.style.backgroundColor = bgColor;
}
trs[i].onmouseout = function(){
this.style.backgroundColor = color2;
}
}
}
}
<script> function showtable(){ var color1 = "rgb(234,240,255)"; var color2 = "rgb(255,255,255)"; var bgColor = "rgb(255,255,193)"; var trs = document.getElementById("datatable").getElementsByTagName("tr"); for (var i=0;i<trs.length-1;i++){ if (i%2==0) { trs[i].style.backgroundColor=color1; trs[i].onmouseover = function(){ this.style.backgroundColor = bgColor; } trs[i].onmouseout = function(){ this.style.backgroundColor = color1; } } else { trs[i].style.backgroundColor=color2; trs[i].onmouseover = function(){ this.style.backgroundColor = bgColor; } trs[i].onmouseout = function(){ this.style.backgroundColor = color2; } } } } showtable() </script>
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