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

9-22练习题Highlight()函数这样写语法有没有错误??

function Highlight()

{

      var tbody = document.getElementById('table').lastChild;

trs = tbody.getElementsByTagName('tr');   

for(var i =1;i<trs.length;i++){

trs[i].onmouseover=onmous(trs[i]);

                       trs[i].onmouseout =outmous(this);

                   }


             function onmous(trsi)

                 {

trsi.style.backgroundColor ="#f2f2f2";

  function outmous(trsi)

  {

trsi.style.backgroundColor ="#fff";

      

  }

}


提问者:胖猫CAT 2017-06-02 21:31

个回答

  • 岁月流声
    2017-06-03 18:54:29

    有没有错写完测试一下就知道拉