您好,欢迎访问一九零五行业门户网

jquery实现table鼠标经过变色代码_jquery

复制代码 代码如下:
$('# tr:not(:has(th))').hover(function () {
$bg = $(this).css('background-color');
$(this).css('background-color', '#ffc4c6');
},
function () {
$(this).css('background-color', $bg);
});
其它类似信息

推荐信息