$("tr:even").css("background-color","#ffffff");
$("tr:odd").css("background-color","#f4f4f4");
$("table tr:gt(0)").hover(function(){
$(this).addClass("tron");
},function(){
$(this).removeClass("tron");
});
$(document).ready(function(){
$("table.tb1").each(function () {
var _this = $(this);
_this.find("tr:even").css("background-color", "#fff");
_this.find("tr:odd").css("background-color", "#f4f4f4");
_this.find("tr:not(:first)").hover(function () {
$(this).attr("bColor", $(this).css("background-color")).css("background-color", "#ddfcff").css("cursor", "pointer");
}, function () {
$(this).css("background-color", $(this).attr("bColor"));
});
});
});
阅读(1489) | 评论(0) | 转发(0) |