jQuery $(this).next()没有按预期工作

我正在尝试创建一个由悬停事件触发的简单下拉列表.为了节省编写代码,我想利用$(this)选择器但是当我尝试将$(this)下一个’a’元素作为目标时,我一直遇到问题.有没有人知道在使用$(this)选择器时对此进行编码的正确方法?

在下面的代码中,如果我将$(this).next(‘a’)更改为$(‘.base a’),代码工作正常但是我必须为每次我想要编写相同的jQuery代码块每次使用不同的类选择器使用此功能.

Jquery代码:

var handlerIn = function() {
var t = setTimeout(function() {
        $(this).next('a') <==== Problem is here
        .addClass('active')
        .next('div')
        .animate({'height':'show'}, {duration:'slow', easing: 'easeOutBounce'});
}, 400);
$(this).data('timeout', t);   
} ;

var handlerOut = function() {
clearTimeout($(this).data('timeout'));
$(this).next('a') <==== Problem is here
  .removeClass('active')
  .next('div')
  .slideUp();

};

$('.base').hover(handlerIn, handlerOut); 

HTML代码:

<div id="info" class="base">
<a href="#" id="info-link" title=""></a>
        <div id="expanded-info">
               <!-- Stuff here -->              
         </div>
</div>

所以我也试过没有运气……任何想法:

var handlerIn = function(elem) {
var t = setTimeout(function() {
        $(elem).next('a') 
        .addClass('active')
        .next('div')
        .animate({'height':'show'}, {duration:'slow', easing: 'easeOutBounce'});
}, 400);
$(elem).data('timeout', t);   
} ;

var handlerOut = function(elem) {
clearTimeout($(elem).data('timeout'));
$(elem).next('a') 
  .removeClass('active')
  .next('div')
  .slideUp();

};
$('.base').hover(handlerIn($(this)), handlerOut($(this)));

最佳答案 JavaScript是函数作用域,而不是块作用域:

var handlerIn = function() {
    var self = this;
    var t = setTimeout(function() {
        $(self).next('a')
            .addClass('active')
            .next('div')
            .animate({'height':'show'}, {duration:'slow', easing: 'easeOutBounce'});
        }, 400);
    $(this).data('timeout', t);   
};
点赞