慕粉15160033427
2016-07-16 15:27
window.onload = function(){
// 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
var tr = document.getElementsByTagName("tr");
for(var i=0;i<tr.length;i++){
tr[i].setAttribute("onmouseover","over(this)");
tr[i].setAttribute("onmouseout","out(this)");
}
};
function over(e){
e.style.backgroundColor="#22f2f2";
}
function out(e){
e.style.backgroundColor="#fff";
}
这段怎么就是不起作用呢?
浏览器问题吧,我复制试了一下,可以变色啊
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题