ホームページ  >  に質問  >  本文

jquery选择器问题?

怎么利用jquery选中除了img.eq(index)的其他img呢?

<div class="slide">
 <img src="xu/images/pic_2.jpg" />
 <img src="xu/images/pic_3.jpg" />
 <img src="xu/images/pic_4.jpg" />
 <img src="xu/images/pic_5.jpg" />
 <img src="xu/images/pic_6.jpg" />
</div>
城堡下的诡洞城堡下的诡洞2818日前813

全員に返信(2)返信します

  • 数据分析师

    数据分析师2017-10-01 00:32:27

    jQueryセレクタの問題? -PHP中国語サイトQ&A-jqueryセレクタの問題? -PHP中国語サイトQ&A

    ぜひ見て学んでください。

    返事
    0
  • 迷茫

    迷茫2017-02-25 09:21:42

    使用siblings这个选择器函数,这个函数的功能是选中自己的兄弟元素。

    // chooseImage是你当前选中的img 
    var chooseImage = $('img').eq(1); 
    // otherImage就是除了你选中img其他的img
    var otherImage = chooseImage.siblings()


    返事
    0
  • キャンセル返事