首页  >  问答  >  正文

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>
城堡下的诡洞城堡下的诡洞2815 天前809

全部回复(2)我来回复

  • 数据分析师

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

    jquery选择器问题?-PHP中文网问答-jquery选择器问题?-PHP中文网问答

    围观一下哦,学习一下。

    回复
    0
  • 迷茫

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

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

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


    回复
    0
  • 取消回复