欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery实现table隔行换色和鼠标经过变色的两种方法

程序员文章站 2022-06-19 21:45:54
一、隔行换色 . 代码如下: $("tr:odd").css("background-color","#eeeeee&qu...

一、隔行换色

. 代码如下:


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


或者一行搞定:

. 代码如下:


$("table tr:nth-child(odd)").css("background-color","#eeeeee");


:nth-child 匹配其父元素下的第n个子或奇偶元素

二、鼠标经过变色

. 代码如下:


$("tr").live({
mouver:function(){
$(this).css("background-color","#eeeeee");
},
mouseout:function(){
$(this).css("background-color","#ffffff");
}
})


或者

. 代码如下:


$("tr").bind("mouseover",function(){
$(this).css("background-color","#eeeeee");
})
$("tr").bind("mouseout",function(){
$(this).css("background-color","#ffffff");
})


当然live()和bind()都可以同时绑定多个事件或分开。