Wo追逐Qian方
2016-02-03 15:14
var trs=document.getElementsByTagName("tr");
for(var i=0;i<trs.length;i++){
trs[i].setAttribute("onmouseover" ,"color(this)");
trs[i].setAttribute("onmouseout" , "javascript:this.style.backgroundColor = 'blue'");
}
function color(obj){
obj.style.backgroundColor = 'red';
}
第二个引号内要么调用函数,要么直接写function(){}这样的函数体
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题