jquery next() 这个

Posted

技术标签:

【中文标题】jquery next() 这个【英文标题】:jquery next() this 【发布时间】:2013-02-14 05:47:17 【问题描述】:

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

尝试制作一个简单的手风琴导航。使用 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() 

但效果不同。 我认为 (this) 会与 div-text 或至少与 DOM 中的其他内容有关?

【问题讨论】:

【参考方案1】:

点击事件中的$(this)代表事件源,而$('.text')代表所有具有class文本的元素的集合。 $('.text').next().slideToggle() 将在选择器 $('.text') 返回的集合的第一个元素上调用 slideToggle

【讨论】:

感谢您的快速回放和出色的回答。但是你不是说你的最后一句话 $(this).next().slideToggle() 会在选择器 $('.text') 返回的集合的第一个元素上调用 slideToggle 吗?【参考方案2】:

简而言之:

$(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.

【讨论】:

以上是关于jquery next() 这个的主要内容,如果未能解决你的问题,请参考以下文章

jQuery .next('div') 切换不起作用

jquery 中的 next() 函数未按预期工作

有没有办法使用jquery的next和next表达式来获取相应的项目

jQuery - live() 不能与附加 div 中的 next() 一起使用

使用 jQuery 动态添加 Prev Next 作为 Bootstrap Modal 按钮

jQuery选择一个类和这个类的“下一个”元素