亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定

jquery 實現鼠標移動到table每行,此行高亮變色

標簽:
JQuery

/*---实现效果的 Jquery 方法---*/
$.change =function(){
        var tableid='table'; 
        var overcolor='#FCF9D8';
        var color2='#F8F8F8';
        var color1='#FFFFFF'; 
        var tablename=document.getElementById(tableid);
        var tr=tablename.getElementsByTagName("tr");
        for(var i=1 ;i<tr.length;i++){
        tr[i].onmouseover=function(){
        this.style.backgroundColor=overcolor;
    };
        tr[i].onmouseout=function(){
        if(this.rowIndex%2==0){
    this.style.backgroundColor=color2;
        }else{
    this.style.backgroundColor=color1;
   }
  };
        if(i%2==0){
        tr[i].className="color2";
  }else{
        tr[i].className="color1";
  }
 }
};


/*----效果页面及调用上面的jquery 方法---*/

$(document).ready(function() {
        //初始化页面时执行 
        $.change();
    });

  <table width="100%" border="0"
                        cellpadding="0" cellspacing="0" >
        <tr>
            <th >序号</th>
            <th >用户名称</th>
            <th >手机号码</th>
            <th >邮箱地址</th>
            <th >创建日期</th>

        </tr>
           
           <tr class="on">
            <td height="39" align="center">1</td>
            <td align="left"><a href="javascript:look('4','tclabc00001');">tclabc000sadfsadfsadfsafdsafdsafsad01</a></td>
                        <td align="left">13800138000</td>
            <td align="left">[email protected]</td>
            <td align="left">2012-03-06</td>
          </tr>
    </table>

點擊查看更多內容
TA 點贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優質文章

正在加載中
移動開發工程師
手記
粉絲
39
獲贊與收藏
245

關注作者,訂閱最新文章

閱讀免費教程

  • 推薦
  • 評論
  • 收藏
  • 共同學習,寫下你的評論
感謝您的支持,我會繼續努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦
今天注冊有機會得

100積分直接送

付費專欄免費學

大額優惠券免費領

立即參與 放棄機會
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號

舉報

0/150
提交
取消