search
HomeWeb Front-endJS TutorialHow to filter exclude elements using jQuery to modify properties of specified tags

Simple case:

$(function(){
    $("td[id][id!='']").click(function(){
           //你的逻辑
    });
});

In the above code, any td that has an id and the id is not empty will execute "your logic".

========================Reprint====================== ===

1, eq()  Filter out the element with the specified index number
2, first() Filter out the first matching element
3, last() Filter out the last matching element Element
4, hasClass() Check whether the matched element contains the specified class
5, filter() Filter out the set of elements that match the specified expression
6, is() Check whether the element can be specified in the parameter Matching
7, map()
8, has() Filter out elements containing specified subelements
9, not() Exclude elements that can be matched in parameters
10, slice( ) Starting from the specified index, intercept the specified number of elements
11, children() Filter to obtain the resources of the specified element
12, closest() Starting from the current element, return the first matching parent element that meets the conditions
13. find()  Find child elements from the specified element
14. next()  Get the next sibling element of the specified element
15. nextAll()  Get all subsequent sibling elements
16 , nextUntil() Get the subsequent elements until the parameters match, excluding the end condition
17, offsetPosition() Return the first ancestor element used for positioning, that is, find the ancestor element whose position is relative or absolute element.
18. parent() Get the direct parent element of the specified element
19. parents() Get all the ancestor elements of the specified element until


20. parentsUntil() Get the ancestor elements of the specified element until the parameters can be matched
21. prev() Get the previous sibling element of the specified element
22.prevAll()Get all the sibling elements before the specified element
23. prevUntil() Gets all sibling elements in front of the specified element until the conditions in the parameters can be matched. Note that the parameter condition itself will not be matched
24, siblings() Get the sibling elements of the specified element, regardless of before or after
25, add() Add the selected element to the jQuery object collection
26, andSelf () Add itself to the selected jQuery collection to facilitate one-time operations
27, end() Return the operation that changes the selection of the current selector to the previous state.
28、contents Not understood

****************************** Filter************ ****************************

1. eq() Filter elements with specified index number

Syntax :eq(index|-index) The index number starts from 0. If it is a negative value, it counts down from the last one, and the last one starts from -1

  $("p").eq(1);  //如果选择器改为  $("p").eq(-1),则我是第四个P会被选中
    
  <p>
    </p><p>我是第一个P</p>
    <p>我是第二个P</p>  //会被选中,索引值为1
    <p>我是第三个P</p>
    <p>我是第四个P</p>
    

Syntax: first() This method has no parameters

  $("p").first();
    
  <p>
    </p><p>我是第一个P</p>  //我的索引值是0,我是第一个,我会被选中
    <p>我是第二个P</p>
    <p>我是第三个P</p>
    <p>我是第四个P</p>
    

Syntax: last() This method has no parameters

  $("p").last();
    
  <p>
    </p><p>我是第一个P</p>
    <p>我是第二个P</p>
    <p>我是第三个P</p>
    <p>我是第四个P</p>    //我是最后一个,我会被选中
    

Syntax: hasClass(class) Class is the category name //returns a Boolean value

   if($("p").hasClass("p2"))
  {
    alert("我里面含有class=p2的元素");  //会弹出,p里的确存在class="p2"的元素
  } 
  <p>
    </p><p>我是第一个P</p>
    <p>我是第二个P</p>
    <p>我是第三个P</p>
    <p>我是第四个P</p>
    

Syntax: filter(expr|obj |ele|fn) expr: matching expression | obj: jQuery object, used to match existing elements | DOM: DOM element used for matching | function return value as matching condition

  $("p").filter(".p2");

  <p>
    </p><p>我是第一个P</p>
    <p>我是第二个P</p>  //我会被选中,我的class="p2"
    <p>我是第三个P</p>
    <p>我是第四个P</p>
    

Syntax: is(expr |obj|ele|fn) expr: matching expression |obj: jQuery object, used to match existing elements | DOM: DOM element used for matching | function return value as matching condition

  $($("p").first().is(".p2"))
  {
    alert("不会弹出,因为第一个P的class不等于p2"); 
  }

  <p>
    </p><p>我是第一个P</p>
    <p>我是第二个P</p>  //我会被选中,我的class="p2"
    <p>我是第三个P</p>
    <p>我是第四个P</p>
    

7. map ()

8. has() Filter out elements containing specified sub-elements

Syntax: has(expr|ele) expr: selection expression | DOM element selection

  $("p").has("p");
 
  <p>                 //本p会被选中,因为该p含有p子元素
    </p><p>我是第一个P</p>
    <p>我是第二个P</p>
    <p>我是第三个P</p>
    <p>我是第四个P</p>
  
  <p>
    <span>我是一个span
  </span></p>

9. not() Exclude elements that can be matched in parameters

Syntax: not(expr|ele|fn) expr: selection expression|DOM element selection|The role of fn is not clear

  $("p").not(".p2");
 
  <p>
    </p><p>我是第一个P</p>        //会被选中,没有class=p2
    <p>我是第二个P</p>  //不会被选中,因为有class=p2被not(".p2")排除了
    <p>我是第三个P</p>        //会被选中,没有class=p2
    <p>我是第四个P</p>         //会被选中,没有class=p2
    

10. slice() Starting from the specified index, intercept the specified number of elements

Syntax: slice(start, [end]) Start position, end is optional, end position, excluding the end position . If not specified, the last one is matched.

  $("p").slice(1,3)
 
  <p>
    </p><p>我是第一个P</p>        //不会被选中,我索引为0
    <p>我是第二个P</p>  //会被选中,我索引为1
    <p>我是第三个P</p>        //会被选中,我索引为2
    <p>我是第四个P</p>         //不会被选中,虽然我的索引为3,但是不包括我
    

************************ Filter************************ *************

11. children() Filter to obtain the resources of the specified element

Syntax: children(expr); Get the resources of the specified element, expr is the filtering condition for child elements

  $("p").children(".p2");
 
  <p>
    </p><p>我是第一个P</p>        //不会被选中,虽然我是p的子元素,但是我没class=p2
    <p>我是第二个P</p>  //会被选中,我既是p的子元素,又有class=p2
    <p>我是第三个P</p>        //不会被选中,虽然我是p的子元素,但是我没class=p2
    <p>我是第四个P</p>         //不会被选中,虽然我是p的子元素,但是我没class=p2
    

12. closest() Starting from the current element, return the first matching parent element that meets the conditions

  $("span").closest("p","p");
  <p>                   //不会被选中,被P抢了先机
    </p><p>我是第一个P            //P会被选中,因为P符合条件,而且是最先匹配到的,虽然p也符合条件了,但是p不是最先匹配到的。因此p不会被选中。
      <span>我是P里的span</span>
    </p>
    

13. find() Starting from the specified Find sub-elements in elements

Syntax: find(expr|obj|ele) expr: matching expression | obj jQuery object used for matching | DOM element

  $("p").find(".p2");    
  <p>
    </p><p>我是第一个P</p>        //不会被选中,虽然我是p的子元素,但是我没class=p2
    <p>我是第二个P</p>  //会被选中,我既是p的子元素,又有class=p2
    <p>我是第三个P</p>        //不会被选中,虽然我是p的子元素,但是我没class=p2
    <p>我是第四个P</p>         //不会被选中,虽然我是p的子元素,但是我没class=p2
    

14. next() Get the next sibling element of the specified element

Syntax: next(expr) expr: Optional, filtering conditions, if the next sibling element does not meet the conditions, return empty.

  $(".p2").next();    //如果筛选改为$(".p2").next(".p4")那选中的是哪个呢?答案是:没选中任何元素,因为虽然有个class=p4的P,但它不是.p2的下一个。      
  <p>
    </p><p>我是第一个P</p>        
    <p>我是第二个P</p>  
    <p>我是第三个P</p>        //我是.p2的next
    <p>我是第四个P</p>
    

15. nextAll() Get all subsequent sibling elements

Syntax: nextAll(expr) expr: Optional, filter conditions, get all subsequent sibling elements that meet expr conditions

  $(".p2").nextAll();  //如果筛选条件改为 $(".p2").nextAll(".p4");  则只有我是第四个P会被选中
  <p>
    </p><p>我是第一个P</p>        
    <p>我是第二个P</p>  
    <p>我是第三个P</p>        //会被选中,是.p2后面的兄弟元素
    <p>我是第四个P</p>   //会被选中,是.p2后面的兄弟元素
    

16. nextUntil() Get the subsequent elements until the parameters match, excluding the end condition

   语法:nextUntil([expr|ele][,fil])  expr筛选表达式 | DOM元素筛选,注意不包括参数里的那一个

  $(".p2").nextUntil(".p4");    //注意此方法并不会包括.p4
  <p>
    </p><p>我是第一个P</p>        
    <p>我是第二个P</p>  
    <p>我是第三个P</p>        //会被选中,是.p2后面的兄弟元素
    <p>我是第四个P</p>   //不会被选中,我作为结束条件,但不包括我
  

十七、offsetPosition()  返回第一个用于定位的祖先元素,即查找祖先元素中position为relative或absolute的元素。

   语法:offsetPosition()  此方法没有参数  由于CSS的绝对定位的定位基准是相对最近的一个已定位元素,因此此方法的作用不言而喻。

  $("span").offsetParent();
  <p>  //选中的是p,因此p是已定位元素。
    </p><p>
      <span>我是一个span</span>
    </p>
  

 十八、parent()    获取指定元素的直接父元素

    语法:parent(expr)  expr为筛选条件,如果直接父元素不符合条件,则不返回任何元素(无论它的祖先是否具有能与expr匹配的)

  $("span").parent();
  <p>  
    </p><p>                //我是span的直接父元素,我会被匹配到
      <span>我是一个span</span>
    </p>
  

十九、parents()      获取指定元素的所有祖先元素,一直到

   语法:parents(expr)  expr为筛选条件,如果某个祖先元素不符合expr则排除

  $("span").parents();
  <p>  //我是span的祖先元素,我也会被匹配到.另外</p>也会被匹配到  
    <p>                //我是span的直接父元素,我会被匹配到
      <span>我是一个span</span>
    </p>
  

二十、parentsUntil()  获取指定元素的祖先元素,知道参数里能匹配到的为止

   语法:parentsUntil(expr)  expr为停止参数,一直匹配到expr为止,同时参数的条件是不会被匹配中的。

  $("span").parentsUntil("p");
  <p>  //我是span的祖先元素,但是我作为停止条件,我也不会被选中  
    </p><p>                //我是span的直接父元素,我会被选中
      <span>我是一个span</span>
    </p>
  

 二十一、prev()    获取指定元素的前一个兄弟元素

    语法:prev(expr)    expr:可选。当上一个兄弟元素不符合参数中的条件时,不返回任何元素。

  $(".p2").prev();    
  <p>
    </p><p>我是第一个P</p>      //我会被选中,我是.p2的前一个元素。
    <p>我是第二个P</p>  
    <p>我是第三个P</p>        
    <p>我是第四个P</p>   
  

二十二、prevAll()  获取指定元素前面的所有兄弟元素

    语法:prevAll(expr)  expr:可选,排除所有不能够被expr匹配上的元素

  $(".p4").prevAll(".p2");    
  <p>
    </p><p>我是第一个P</p>        //不会被选中,虽然我是.p4前面的兄弟元素,但是我没有class=p2
    <p>我是第二个P</p>  //会被选中,我既是.p4前面的兄弟元素,而且我有class=p2
    <p>我是第三个P</p>        //不会被选中,虽然我是.p4前面的兄弟元素,但是我没有class=p2
    <p>我是第四个P</p>  
  

二十三、prevUntil()  获取指定元素前面的所有兄弟元素,直到参数里的条件能够匹配到的。 注意参数条件本身不会被匹配

    语法:prevUntil([expr|ele][,fil])  expr匹配表达式 | DOM元素匹配

  $(".p4").prevUntil(".p2");    
  <p>
    </p><p>我是第一个P</p>        //不会被选中,到p2就停止了
    <p>我是第二个P</p>  //不会被选中,我是停止条件,不包括我
    <p>我是第三个P</p>        //会被选中,我在.p2前,递归到我在到.p2
    <p>我是第四个P</p>  //不会被选中,我自己怎么可能是我自己前面的呢?
  

/********************  串联 *******************************/ 

二十四、siblings()  获取指定元素的兄弟元素,不分前后

    语法:siblings(expr);  expr为筛选条件,不符合条件的不会选中

  $(".p2").siblings();    
  <p>
    </p><p>我是第一个P</p>        //会被选中,我是.p2的兄弟元素
    <p>我是第二个P</p>  //不会被选中,我是自己
    <p>我是第三个P</p>        //会被选中,我是.p2的兄弟元素
    <p>我是第四个P</p>  //会被选中,我是.p2的兄弟元素
  

 二十五、add()  将选中的元素添加到jQuery对象集合中

    add(expr|elements|html|jQueryObject)  expr:选择器表达式 | DOM表达式 | Html片段 | jQuery对象,将jQuery对象集合一起方便操作;

  $(".p2").add("span").css("background-color","red");    
  <p>
    </p><p>我是第一个P</p>        
    <p>我是第二个P</p>  //会变红
    <p>我是第三个P</p>        
    <p>我是第四个P</p>  
  
  <span>我是一个span</span>      //会变红

二十六、andSelf()  将自身加到选中的jQuery集合中,以方便一次性操作

    andSelf()  此方法无参数

  $(".p2").nextAll().andSelf().css("background-color","red");
  <p>
    </p><p>我是第一个P</p>        
    <p>我是第二个P</p>  //会变红,这就是andSelf()的效果
    <p>我是第三个P</p>        //会变红
    <p>我是第四个P</p>  //会变红
  

二十七、end()      将改变当前选择器选中的操作回退为上一个状态。

    end()   此方法没有参数

  $(".p2").next().end().css("background-color","red");
  <p>
    </p><p>我是第一个P</p>        
    <p>我是第二个P</p>  //会变红,这就end()的效果
    <p>我是第三个P</p>        //不会变红,尽管next()方法之后选中的是这一个,但是由于被end()方法回退了因此是上一个。
    <p>我是第四个P</p>
  

The above is the detailed content of How to filter exclude elements using jQuery to modify properties of specified tags. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
jquery实现多少秒后隐藏图片jquery实现多少秒后隐藏图片Apr 20, 2022 pm 05:33 PM

实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

jquery怎么修改min-height样式jquery怎么修改min-height样式Apr 20, 2022 pm 12:19 PM

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

axios与jquery的区别是什么axios与jquery的区别是什么Apr 20, 2022 pm 06:18 PM

区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

jquery怎么在body中增加元素jquery怎么在body中增加元素Apr 22, 2022 am 11:13 AM

增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

jquery中apply()方法怎么用jquery中apply()方法怎么用Apr 24, 2022 pm 05:35 PM

在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

jquery怎么删除div内所有子元素jquery怎么删除div内所有子元素Apr 21, 2022 pm 07:08 PM

删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

jquery on()有几个参数jquery on()有几个参数Apr 21, 2022 am 11:29 AM

on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。

jquery怎么去掉只读属性jquery怎么去掉只读属性Apr 20, 2022 pm 07:55 PM

去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.