$(function() {
    $(".listTable tr:not(#trspecial)").mouseenter(function() {
        $(this).css("background", "#CEE3FB").siblings().css("background", "#FFFFFF");
    });
    $(".listTable tr:not(#trspecial)").mouseout(function() {
        $(this).css("background", "#FFFFFF");
    });
});

 

posted on 2014-03-11 22:54  dianyitongxiao  阅读(186)  评论(0编辑  收藏  举报