六狼论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

搜索
查看: 66|回复: 0

table 奇偶行背景色 鼠标移动行颜色变化

[复制链接]

升级  12.67%

68

主题

68

主题

68

主题

举人

Rank: 3Rank: 3

积分
238
 楼主| 发表于 2013-2-3 14:38:42 | 显示全部楼层 |阅读模式
//设置table中偶数行的背景色$("#tableID  tr:nth-child(even)").css({"background-color":"#E4F5FF"}); //绑定事件当鼠标放到元素上背景颜色,以及鼠标移开时背景颜色(会根据奇偶行判断设置不同的背景色)     $("#tableID tr").mouseover(function(){     $(this).css({"background-color":"#87CEEB"});     }).mouseout(function(event){   var $index=$(this).index();   if($index%2==0){   $(this).css({"background-color":"#fff"});   }else{   $(this).css({"background-color":"#E4F5FF"});   }     });
您需要登录后才可以回帖 登录 | 立即注册 新浪微博账号登陆

本版积分规则

快速回复 返回顶部 返回列表