1

我偶然发现了一个小问题。

试图制作一个简单的手风琴导航。使用 jquery,但注意到一些我无法弄清楚的事情。

这是我的代码

<div class="box"> Item 1</div>
<div class="text"> Text Box </div>
<div class="box"> Item 2</div>
<div class="text"> Text Box 2</div>
<div class="box"> Item 3</div>
<div class="text"> Text Box 3</div>

JS

$('.box').click(function(){
    $('.text').slideUp()
    $(this).next().slideToggle()    
})

我想知道的是,如果我使用

    $(this).next().slideToggle()      

一切正常。

现在我尝试替换(this)如下:

    $('.text').next().slideToggle() 

但效果不同。我认为(这个)会与 div-text 或至少与 DOM 中的其他东西有关?

4

2 回答 2

3

click 事件中的$(this)代表事件的来源,另一方面 $('.text')代表所有具有class文本的元素的集合。 $('.text').next().slideToggle()将调用slideToggleselector 返回的集合的第一个元素$('.text')

于 2013-02-14T05:49:49.730 回答
1

简而言之:

$(this) // <----Represents current target which got the event

尽管:

$('.text') // <--- this is a collection of all elems with class '.text' so all
           // -----will be getting events simultaneosly.
于 2013-02-14T05:54:32.710 回答