鼠标移入or移出获取父类

    $(document).ready(function(){
        $(".swiper-item-wrap").on({
            mouseover: function () {
                $(this).parent().children('.item-wrap').removeClass('active');
                $(this).addClass('active');
            },
            mouseout: function () {
                $(this).parent().children('.item-wrap').removeClass('active');
                $(this).parent().children(':first').addClass('active');
            }
        });  

    });

 

 

posted @ 2021-10-25 14:43  清清沁沁  阅读(23)  评论(0编辑  收藏  举报