问答详情
源自:9-22 编程练习

排名第二的答案看不懂

      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"');

       }

     

 

}


提问者:这是三文猫呀3551700 2016-07-22 12:38

个回答

  • yemaa
    2016-07-25 11:48:11
    已采纳

    这是一个判断语句,条件是:'onmouseover',document.all;为true执行:eval(function(){this.style.background="#f2f2f2"});为flase执行:'javascript:this.style.background="#f2f2f2"


  • 凰羽汀
    2016-08-05 11:09:31

    同C语言中判断两个数大小的简写,差不多的理解方式

  • 慕粉3654500
    2016-07-22 17:50:32

    也看不懂

  • 963601654
    2016-07-22 17:07:36

    哪里看不懂