Jquery 表格隔行变色

$(document).ready(function () {
    $(".tb tr:odd").addClass("ou");
    $(".tb tr:even").addClass("js");
    $(".tb tr").hover(function () {
        $(this).addClass("hover");
    }, function () {
        $(this).removeClass("hover");
    });
})
 
 
 
下面是 css样式 
 
.ou{ background:#9de9f0;}
.js{ background:#fff;}
.hover{ background:#eafb2b;}

 

posted @ 2020-03-01 17:11  曾小慧  阅读(340)  评论(0编辑  收藏  举报