jquery積累~children(":eq()")與children().eq()

來源:互聯網
上載者:User

標籤:垃圾   分享   比較   alt   9.png   div   image   class   bsp   

  今天看到原來寫的代碼~突然想到 children(":eq(2)")和children().eq(2)是不是一樣~結合自己動手~發現確實是一樣的,感覺自己好垃圾順便記下來.積累一下

  html結構如下

<div class="div"><ul><li><span>hello</span>1</li><li><span>hello</span>2</li><li><span>hello</span>3</li><li><span>hello</span>4</li><li><span>hello</span>5</li></ul><ul><li><span>hello</span>11</li><li><span>hello</span>22</li><li><span>hello</span>33</li><li><span>hello</span>44</li><li><span>hello</span>55</li></ul><ul><li><span>hello</span>111</li><li><span>hello</span>222</li><li><span>hello</span>333</li><li><span>hello</span>444</li><li><span>hello</span>555</li></ul><ul><li><span>hello</span>1111</li><li><span>hello</span>2222</li><li><span>hello</span>3333</li><li><span>hello</span>4444</li><li><span>hello</span>5555</li></ul></div>

  然後引入jquery,比較兩者的區別(實際也沒啥區別,就是書寫方式不一樣)

   代碼如下

   

$(‘ul‘).children(":eq(1)").css(‘color‘ , ‘red‘);$(‘ul‘).children().eq(2).css(‘color‘ , ‘red‘);

  

改成其他的也沒啥區別

還有就是children()與find()的區別~實驗後發現,find()的括弧裡必須寫上東西~否則無效

$(‘div‘).find().eq(2).css(‘color‘ , ‘red‘);

 

  

下面是有效

$(‘div‘).find(‘ul‘).eq(2).css(‘color‘ , ‘red‘);

 總結下來就是:find()尋找的是後代,子代,子子代,而且參數必須填寫

      children()本身尋找的就是子代,裡面的參數選填

 

jquery積累~children(":eq()")與children().eq()

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.