当前位置:主页 > 网页前端 > jquery >

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

时间:2021-07-20 08:54:04 | 栏目: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);
});

您可能感兴趣的文章:

相关文章