一、隔行换色
$("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"); })
jQuery实现table隔行换色和鼠标经过变色,布布扣,bubuko.com
原文地址:http://blog.csdn.net/itmyhome1990/article/details/30249579