艾米丽宏
2018-05-17 21:32
window.onload = function(){
// 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
var mors = document.getElementsByTagName("tr");
for(var i=0;i<mors.length;i++){
//bgcChange(mors[i])
mors[i].onmouseover=function(){
mors[i].style.backgroundColor="#f2f2f2";
}
mors[i].onmouseout=function(){
mors[i].style.backgroundColor="#f2f2f2";
}
}
}
如有错误请指正
var tr=document.getElementsByTagName("tr"); for(var i=0;i<tr.length;i++){ tr[i].onmouseover=function(){ this.style.backgroundColor="#f2f2f2"; } tr[i].onmouseout=function(){ this.style.backgroundColor="#fff"; } }
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题