jQuery SlideToggle() 回调函数

问题描述 投票:0回答:1

这是 jQuery SlideToggle 函数:

$('.class').click(function() {
    $(this).parent().next().slideToggle('slow', function() {
        // how can I access $('.class') that was clicked on
        // $(this) returns the $(this).parent().next() which is the element
        // that is currently being toggled/slided
    });
});

在回调函数中,我需要访问当前的 .class 元素(被单击的元素)。我怎样才能做到这一点?

javascript jquery callback slidetoggle
1个回答
20
投票

获取回调外部元素的引用,然后您可以在回调函数内使用它。

$('.class').click(function() {
    var $el = $(this);
    $el.parent().next().slideToggle('slow', function() {
         //use $el here
    });
});
© www.soinside.com 2019 - 2024. All rights reserved.