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

2019-12-24,,

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

您可能感兴趣的文章:

  • 15款优秀的jQuery导航菜单插件分享
  • 分享14个很酷的jQuery导航菜单插件
  • jquery实现table鼠标经过变色代码
  • jquery导航制件jquery鼠标经过变色效果示例

《写得不错的jquery table鼠标经过变色代码.doc》

下载本文的Word格式文档,以方便收藏与打印。