js 给所有加载本JS页面地指定标签进行绑定事件

 

 可能有时会遇到给页面地列表绑定移入移出事件,可是每个页面写又太麻烦所以就想到了,以下:

<table width="80%" height="80%" align="center" border="1">
<tr bordercolor="#CC3300">
<td style="cursor:pointer;">&nbsp;1</td>
<td style="cursor:pointer;">&nbsp;1</td>
<td style="cursor:pointer;">&nbsp;1</td>
</tr>
<tr bordercolor="#00FF66">
<td style="cursor:pointer;">&nbsp;2</td>
<td style="cursor:pointer;">&nbsp;2</td>
<td style="cursor:pointer;">&nbsp;2</td>
</tr>
<tr bordercolor="#00FF66">
<td style="cursor:pointer;">&nbsp;3</td>
<td style="cursor:pointer;">&nbsp;3</td>
<td style="cursor:pointer;">&nbsp;3</td>
</tr>
<tr bordercolor="#6633FF">
<td style="cursor:pointer;">&nbsp;4</td>
<td style="cursor:pointer;">&nbsp;4</td>
<td style="cursor:pointer;">&nbsp;4</td>
</tr>
</table>

<script type="text/javascript" >
 var tds=document.getElementsByTagName("tr");
 for(var i=0;i<tds.length;i++){
  tds[i].οnmοuseοver=function(){
   this.style.color="red";
    };
    tds[i].οnmοuseοut=function(){
   this.style.color="blue";
    };
  }
</script>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值