2

不知道为什么它不起作用,我认为代码很好 - 你能告诉我有什么问题吗?我需要在一段时间后添加一些课程......

$('.main_menu ul li').mouseenter(function(){
    setTimeout(function(){
        $(this).children('.sub_menu_main').addClass('opened')
    },200);
});
$('.main_menu ul li').mouseleave(function(){
    $(this).children('.sub_menu_main').removeClass('opened')
});
4

2 回答 2

5
$('.main_menu ul li').on({
    mouseenter: function(){
        var self = this; //in scope
        $(self).data('timer', setTimeout(function(){ //new scope
            $(self).children('.sub_menu_main').addClass('opened'); //out of scope
        },200);
    },
    mouseleave: function(){
        clearTimeout($(this).data('timer'));
        $(this).children('.sub_menu_main').removeClass('opened');
    }
});
于 2012-12-04T15:56:45.547 回答
2

我相信this没有引用您认为它在该范围内所做的事情。您应该尝试在外部范围中存储对此的引用,然后通过该引用访问悬停的元素:

$('.main_menu ul li').mouseenter(function(){
    var that = this;
    setTimeout(function(){
        $(that).children('.sub_menu_main').addClass('opened')
    },200);
});
于 2012-12-04T15:57:18.370 回答