当前位置: 编程技术>jquery
jquery特效 table鼠标滑过变色的实现代码
来源: 互联网 发布时间:2014-09-03
本文导语: 一例table鼠标经过变色的效果,本例由jquery来实现,有兴趣的朋友,研究下吧。 代码: 代码示例: $('# tr:not(:has("th"))').hover(function () { $bg = $(this).css('background-color'); $(this).css('background-color', '#ffc4c6'); }, function () { $(this)....
一例table鼠标经过变色的效果,本例由jquery来实现,有兴趣的朋友,研究下吧。
代码:
代码示例:
$('# tr:not(:has("th"))').hover(function () {
$bg = $(this).css('background-color');
$(this).css('background-color', '#ffc4c6');
},
function () {
$(this).css('background-color', $bg);
});
$bg = $(this).css('background-color');
$(this).css('background-color', '#ffc4c6');
},
function () {
$(this).css('background-color', $bg);
});