当前位置: 代码迷 >> Web前端 >> table 奇偶行背景色 鼠标腾挪行颜色变化
  详细解决方案

table 奇偶行背景色 鼠标腾挪行颜色变化

热度:88   发布时间:2012-08-27 21:21:56.0
table 奇偶行背景色 鼠标移动行颜色变化
  //设置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"});
   		}
     });
  相关解决方案