Home > Web Front-end > JS Tutorial > body text

JavaScript code for Table to change color on alternate rows_javascript skills

WBOY
Release: 2016-05-16 18:11:49
Original
804 people have browsed it

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>
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!