jquery table鼠标经过变色代码
程序员文章站
2023-02-07 11:33:35
代码如下:
$('#<%=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);
});
上一篇: 新房千万不要交给父母装修
下一篇: C语言实现数组的奇偶排序