您的位置:首页 > Web前端 > JQuery

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

2013-09-25 16:33 120 查看
$('#<%=AllEvent.ClientID%> tr:not(:has("th"))').hover(function () {

$bg = $(this).css('background-color');

$(this).css('background-color', '#ffc4c6');

},

function () {

$(this).css('background-color', $bg);

});
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: