亲宝软件园·资讯

展开

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

人气:0
复制代码 代码如下:

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

加载全部内容

相关教程
猜你喜欢
用户评论