window.onload = function(){
// 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
var str_tr=document.getElementsByTagName('tr');
for(var i=0;i<str_tr.length;i++){
str_tr[i].setAttribute('onmouseover',document.all ? eval(function(){this.style.background="#f2f2f2"}) : 'javascript:this.style.background="#f2f2f2"');
str_tr[i].setAttribute('onmouseout',document.all?eval(function(){this.style.background="#fff"}):'javascript:this.style.background="#fff"');
}
}
这是一个判断语句,条件是:'onmouseover',document.all;为true执行:eval(function(){this.style.background="#f2f2f2"});为flase执行:'javascript:this.style.background="#f2f2f2"
同C语言中判断两个数大小的简写,差不多的理解方式
也看不懂
哪里看不懂