search

Home  >  Q&A  >  body text

Next后面的选择器是否有必要?

不明白为什么next后面还要加个选择器作甚?不管怎么加选择都是你所找到的那个元素的下一个元素啊!

checkcheck2899 days ago1142

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:02:01

    Is the selector after Next necessary? -PHP Chinese website Q&A-Is the selector after Next necessary? -PHP Chinese website Q&A

    Please watch and learn.

    reply
    0
  • 迷茫

    迷茫2016-12-20 09:24:20

        肯定有必要啊!你应该是把next()和选择器搞混淆了

         $('.item-2').next(':eq(1)'),你应该是觉得$('.item-2').next()就够了,因为next()总是为class=item-2紧接的那个元素,但是class=item-2的元素不止一个啊,所以$('.item-2').next()的元素也不止一个。

        所以$('.item-2').next(':eq(1)')是选择为所有的类为class=item-2元素下面的那个元素的集合中下标为1的那个元素。


    reply
    1
  • Cancelreply