jQuery实现table隔行换色和鼠标经过变色

一、隔行换色

$("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({
	mouseover: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()都可以同时绑定多个事件或分开。

如果table表格是动态添加的 请参阅:http://blog.csdn.net/itmyhome1990/article/details/30245973



jQuery实现table隔行换色和鼠标经过变色,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。