输入banner图图片脚本导航/分类

写得不错的jquerytable鼠标经过变色代码_jquery

代码如下:

$('#<%=AllEvent.ClientID%> tr:not(:has("th"))').hover(function () {
$bg = $(this).css('background-color');
$(this).css('background-color', '#ffc4c6');
},
function () {
$(this).css('background-color', $bg);
});