为了账号安全,请及时绑定邮箱和手机立即绑定

color();里面这三个是代表什么意思

 window.onload = function(){

          color();

      }       

     // 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。

     function color(){

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

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

    list[i].onmouseover=function(){this.style.backgroundColor="red"};

         list[i].onmouseout=function(){this.style.backgroundColor="#fff"};

     }

         

      // 编写一个函数,供添加按钮调用,动态在表格的最后一行添加子节点;

   

           function append(){

         var id=document.getElementById("table").lastChild; 

     

         var newnode=document.createElement("tr");

         id.appendChild(newnode);

           

         var newnode1=document.createElement("td");

          newnode1.innerHTML="xh003";

          newnode.appendChild(newnode1);

          

          var newnode2=document.createElement("td");

          newnode2.innerHTML="韦小宝"; 

          newnode.appendChild(newnode2);

          

          var newnode3=document.createElement("td");

          newnode3.innerHTML= "<a href='javascript:' onclick='lete(this)'>删除</a>";

          newnode.appendChild(newnode3);

           color();

         }

               


正在回答

1 回答

 var list =document.getElementsByTagName("tr");  //获取所有<tr>放入数组list

for(i=1;i<list.length;i++){   //循环

    list[i].onmouseover=function(){this.style.backgroundColor="red"};//设置第i行鼠标移入事件

         list[i].onmouseout=function(){this.style.backgroundColor="#fff"};//设置第i行鼠标移出事件


0 回复 有任何疑惑可以回复我~
#1

new新的开始 提问者

除了这两个。是我没问清楚。。 是这个。color();带括号的
2016-10-17 回复 有任何疑惑可以回复我~
#2

new新的开始 提问者

除了这两个。是我没问清楚。。 是这个。color();带括号的
2016-10-17 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

color();里面这三个是代表什么意思

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信