Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1527284
  • 博文数量: 329
  • 博客积分: 2773
  • 博客等级: 少校
  • 技术积分: 4219
  • 用 户 组: 普通用户
  • 注册时间: 2012-02-24 14:17
个人简介

淡定从容,宁静致远

文章分类

全部博文(329)

文章存档

2016年(4)

2015年(50)

2014年(68)

2013年(45)

2012年(162)

分类: Html/Css

2015-07-07 12:08:56

$("tr:even").css("background-color","#ffffff");
$("tr:odd").css("background-color","#f4f4f4"); 

$("table tr:gt(0)").hover(function(){
  $(this).addClass("tron");
},function(){
  $(this).removeClass("tron");
});


$(document).ready(function(){
$("table.tb1").each(function () {
       var _this = $(this);
      
       _this.find("tr:even").css("background-color", "#fff");
       _this.find("tr:odd").css("background-color", "#f4f4f4");
 
       _this.find("tr:not(:first)").hover(function () {
           $(this).attr("bColor", $(this).css("background-color")).css("background-color", "#ddfcff").css("cursor", "pointer");
       }, function () {
           $(this).css("background-color", $(this).attr("bColor"));
       });
   });
});

阅读(1489) | 评论(0) | 转发(0) |
0

上一篇:table tr鼠标事件

下一篇:按钮偏移换图

给主人留下些什么吧!~~