为什么不能用tr[i].setAttribute('onmouseover','changeColor(this)');来改变颜色
function changeColor(oj){
oj.style.backgroundColor='#f2f2f2';
}
setAttribute()方法的语法是 setAttribute(name,value),name为要设置的属性名,value为要设置的属性值,