table 奇偶行背景色 鼠标移动行颜色变化_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > table 奇偶行背景色 鼠标移动行颜色变化

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

 2011/11/4 8:11:19  showlike  http://showlike.iteye.com  我要评论(0)
  • 摘要://设置table中偶数行的背景色$("#tableIDtr:nth-child(even)").css({"background-color":"#E4F5FF"});//绑定事件当鼠标放到元素上背景颜色,以及鼠标移开时背景颜色(会根据奇偶行判断设置不同的背景色)$("#tableIDtr").mouseover(function(){$(this).css({"background-color":"#87CEEB"});}).mouseout(function(event)
  • 标签:鼠标 变化
  //设置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"});
   		}
     	
     });
?
发表评论
用户名: 匿名