JQuery 入門指南(7):通過過濾的方式搜尋元素

來源:互聯網
上載者:User

三個最基本的過濾方法是:first(), last() 和 eq(),它們允許您基於其在一組元素中的位置來選擇一個特定的元素。
下面的例子選取首個 <div> 元素內部的第一個 <p> 元素:

$(document).ready(function(){$("div p").first();});

下面的例子選擇最後一個 <div> 元素中的最後一個 <p> 元素:
$(document).ready(function(){$("div p").last();});

索引號從 0 開始,因此首個元素的索引號是 0 而不是 1。下面的例子選取第二個 <p> 元素(索引號 1):
$(document).ready(function(){$("p").eq(1);});


下面的例子返回帶有屬性class= "intro" 的所有 <p> 元素:
$(document).ready(function(){$("p").filter(".intro");});
提示:not() 方法與 filter() 相反。
下面的例子返回不帶有類名 "intro" 的所有 <p> 元素:
$(document).ready(function(){$("p").not(".intro");});


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.