写得不错的jquery table鼠标经过变色代码

$('#<%=AllEvent.ClientID%> tr:not(:has("th"))').hover(function () { 

$bg = $(this).css('background-color'); 
$(this).css('background-color', '#ffc4c6'); 
}, 
function () { 
$(this).css('background-color', $bg); 
});

SyntaxHighlighter.highlight();