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

来源:9-22 编程练习

胖猫CAT

2017-06-02 21:31

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

      

  }

}


写回答 关注

1回答

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

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

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题