jQuery hover鼠标经过移开增加删除class

$(".sidebar-right").hover(
            function() {
                $(this).find('.text').addClass('text-comments');
                $(this).find('.text_box').show();
 
            },
            function() {
                $(this).find('.text').removeClass('text-comments');
                $(this).find('.text_box').hide();
            }
        );

发布日期:

所属分类: JavaScript/jquery 标签:   


没有相关文章!