//jquery 1.3以上 //表格行颜色 function TableTrColor(tid, color, startrow, endrow) { //敖士伟 ikmb@163.com $("#" + tid + " tr:not(:gt(" + endrow + ")):gt(" + startrow + ")").live("mouseover", function() { c = $(this).css("background-color"); $(this).css("background-color", "#cccccc"); }); $("#" + tid + " tr:not(:gt(" + endrow + ")):gt(" + startrow + ")").live("mouseout", function() { $(this).css("background-color", c); }); }