大神可不可以解释一下每句是什么意思?有点晕~~
window.onload = function(){
// 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
Hightlight();
}
function Hightlight(){
var t = document.getElementById("table").lastChild;
var t1 = t.getElementsByTagName("tr");
for(var i = 1; i < t1.length; ++i ){
t1[i].onmouseover = function(){
this.style.backgroundColor = "#f2f2f2";
}
t1[i].onmouseout = function(){
this.style.backgroundColor = "#fff";
}
}
}
陈默有言
相关分类