jquery特效 table鼠标滑过变色的实现代码

发布时间:2020-03-13编辑:脚本学堂
本文分享一例jquery特交代码,当鼠标滑动table是改变颜色,挺不错的一个小例子,有需要的朋友参考下。

一例table鼠标经过变色的效果,本例由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);
});