关于函数调用
到了练习的时候会发现之前有好多学了之后不会用,有点觉得自己不适合编程,为什么添加经过改变背景要嵌套一个函数,还有for循环中为什么设置两次背景颜色
window.onload = function(){
var trs = document.getElementsByTagName('tr');
for(var i = 1; i < trs.length; i++){
trs[i].onmouseover = function(){
this.style.backgroundColor = "#f2f2f2";
}
trs[i].onmouseout = function(){
this.style.backgroundColor = "#fff";
}
}
}
求解答