就是那只阿狸
2017-06-05 22:53
window.onload = function(){
// 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
var tr=document.getElementsByTagName("tr");
for(i=0;i<tr.length;i++){
tr[i].onmouseover=function(){
tr[i].style.backgroundColor="#f2f2f2";
};
a_list[i].onmouseout=function(){
tr[i].style.backgroundColor="#fff";
};
}
a_list ???
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题