Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

jQuery 遍历 - 过滤


first()、last()、eq()、filter() 和 not() 方法

最基本的过滤方法是 first()last()eq(),它们允许您根据元素在元素组中的位置来选择特定元素。

其他过滤方法,如 filter()not() 允许您选择与特定条件匹配或不匹配的元素。


jQuery first() 方法

first() 方法返回指定元素的第一个元素。

以下示例选择第一个 <div> 元素

示例

$(document).ready(function(){
  $("div").first();
});
亲自试一试 »

jQuery last() 方法

last() 方法返回指定元素的最后一个元素。

以下示例选择最后一个 <div> 元素

示例

$(document).ready(function(){
  $("div").last();
});
亲自试一试 »


jQuery eq() 方法

eq() 方法返回选定元素的特定索引号的元素。

索引号从 0 开始,所以第一个元素的索引号是 0,而不是 1。以下示例选择第二个 <p> 元素(索引号为 1)

示例

$(document).ready(function(){
  $("p").eq(1);
});
亲自试一试 »

jQuery filter() 方法

filter() 方法允许您指定条件。不满足条件的元素将从选择中删除,满足条件的元素将被返回。

以下示例返回所有具有类名“intro”的 <p> 元素

示例

$(document).ready(function(){
  $("p").filter(".intro");
});
亲自试一试 »

jQuery not() 方法

not() 方法返回所有不满足条件的元素。

提示:not() 方法与 filter() 相反。

以下示例返回所有没有类名“intro”的 <p> 元素

示例

$(document).ready(function(){
  $("p").not(".intro");
});
亲自试一试 »

jQuery 练习

用练习来检验自己

练习

使用 jQuery 方法获取文档中的第一个 <div> 元素。

$("div").();

开始练习


jQuery 遍历参考

有关所有 jQuery 遍历方法的完整概述,请访问我们的 jQuery 遍历参考


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.