关于高亮设置的疑问
我想直接在tr上绑定onmouseover和onmouseout事件
<tr onmouseover="mouse(this)">
然后
function mouse(obj){
obj.style.backgroundColor ="#f2f2f2";
}
window.onload = function(){
mouse();
}
做了这些改动之后
会报错
Uncaught TypeError: Cannot read property 'style' of undefined
哪位大神给解答一下。