表格无法变色

 window.onload = function(){

      var trs=document.getElementsByTagName("tr");

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

      bgcChange(trs[i]);

      }

     }  

 

function bgcChange(obj){

obj.onmouseover=function(){

      obj.style.backgroundColor("#f2f2f2");

      }

      obj.onmouseout=function(){

      obj.style.backgroundColor("#fff");

      }}  

不知道代码哪里有问题,在Chrome中审查元素说obj.style.backgroundColor is not a function

慕粉3332817
浏览 1231回答 1
1回答

陌卍言

obj.style.backgroundColor = “#f2f2f2”
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript