一、隔行換色
$("tr:odd" ).css("background-color","#eeeeee");
$("tr:even").css("background-color","#ffffff");
或一行搞定:
$("table tr:nth"table trtr:nth"table trtr:nth"table trtr:nth"table trtr:nth -child(odd)").css("background-color","#eeeeee");
:nth-child 符合其父元素下的第N個子或奇偶元素
二、滑鼠經過變色
程式碼如下:
$("tr>$("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()都可以同時綁定多個事件或分開。