jquery table鼠标经过变色代码
程序员文章站
2022-05-02 22:58:09
代码如下:
$('#<%=allevent.clientid%> tr:not(:has("th"))').hover(function () {...
代码如下:
$('#<%=allevent.clientid%> tr:not(:has("th"))').hover(function () {
$bg = $(this).css('background-color');
$(this).css('background-color', '#ffc4c6');
},
function () {
$(this).css('background-color', $bg);
});
上一篇: AXURE怎么使用中继器实现样式重复但内容不同的效果?
下一篇: 分享3道python基础练习题