jQuery实现table隔行换色和鼠标经过变色
Posted fooo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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()都可以同时绑定多个事件或分开。
以上是关于jQuery实现table隔行换色和鼠标经过变色的主要内容,如果未能解决你的问题,请参考以下文章