Home Web Front-end JS Tutorial Detailed explanation of jQuery filter children() case (picture and text)_jquery

Detailed explanation of jQuery filter children() case (picture and text)_jquery

May 16, 2016 pm 05:41 PM
children filter

jQuery’s selection includes two types, one is the selector and the other is the filter. Filters are used to further select jQuery objects selected by the selector.

children() is a filter. As the name suggests, it filters children and filters those children who meet the conditions.

The complete format is as follows:

Copy code The code is as follows:

.children(expr )

where children is the name of the filter, expr is the expression, all expressions in the selector can be used here, such as by tag name "div", by class name ".class" ", by serial number ":first" and so on. If the expression is empty, all children will be returned, and the returned result will still be a jQuery object. For example:
Copy code The code is as follows:




You may also like



  • Head & Shoulders Shampoo

  • Liu Shen Toilet Water

  • Safeguard Soap

  • Xin Xiang Printed tissue

  • Wahaha Mineral Water

  • Wong Lo Kat




Popular recommendations



  • Rongshi Olive oil

  • Pampers Diapers

  • Organic Rice

  • Miaojie Trash Bag< /li>
  • Youlemei Milk Tea

  • Kiss Jelly







Copy code The code is as follows:



Requirement 1: Change the font color of all div children to red
Copy code The code is as follows:

$("div").children().css("color","red");//all The text has turned red

Requirement 2: Change the font color of h2 tags in the children of all divs to red

Copy code The code is as follows :

$("div").children("h2").css("color","red");//All h2 title text turns red

Requirement 3: Change the font color of the li tag in the children of all divs to red

Copy the code The code is as follows:

$("div").children("li").css("color","red");//Failed!

Why didn’t it succeed? Because children can only find children, not grandchildren, and the children of div are h2 and ul, so li cannot be found;

Then if you want to find li through children, you have to first select li's father ul

Copy the code The code is as follows:

$("div ul").children("li").css("color","red");//All li text turns red

$("div ul") is a cascading selector, which means to select the ul below the div. This will not be explained in detail here.


Requirement 4: Change the font color of the second child of ul to red

Copy code The code is as follows:

$("div ul").children(":eq(1)").css("color","red");//Guess which one you like The second line of "Liu Shen Floral Water" will turn red

If you want the second child to turn red, why is eq(1)? Because the sequence number starts from 0, the first child's sequence number is 0, so the second child's sequence number is 1.

A closer look shows that only the second line of the "Guess You Like" module has changed, but the second line of "Popular Recommendations" has not changed. Why? Because the children filtered out by the children filter are sorted together, the second line of "Popular Recommendations" becomes Old 7. If you want to make it red, you can write:

Copy code The code is as follows:

$("div ul").children(":eq(1),:eq(7)") .css("color","red");//Guess the second line you like, the second line of popular recommendations will turn red

Both lines will turn red]

To summarize: children is a filter that finds the children of the current jQuery object. expr in children(expr) is an expression. After expr is added, only the children who match expr will stay. No Those that match will be killed. children can only find children. If you want to find grandchildren and great-grandchildren, you have to use the find filter.

Statement of this Website
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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use react children method How to use react children method Jan 03, 2023 am 09:45 AM

The react children method is used to process "this.props.children". Its processing methods are: 1. React.Children.map(); 2. React.Children.forEach(); 3. React.Children.count(); 4 , React.Children.only(); 5. React.Children.toArray().

How to turn off smartscreen filter in Win10 system How to turn off smartscreen filter in Win10 system Jul 02, 2023 pm 02:01 PM

How to turn off smartscreen filter in Win10 system? Recently, some Win10 system users said that when downloading or running a certain program, the system prompts: Windows has protected your computer, and the smartscreen filter has prevented the startup of an unidentified application. This is because the smartscreen filter has not been turned off in the Win10 system. Caused by this, this article will share with you the guide to turning off the smartscreen filter in Win10 system, let’s take a look! Guide to turning off the smartscreen filter in Win10 system 1. Press WIN+X or right-click the Start menu, and then open the Control Panel; as the picture shows:

BubblePal AI companion toy for kids launches with eerily M3GAN-like concept BubblePal AI companion toy for kids launches with eerily M3GAN-like concept Aug 14, 2024 pm 09:58 PM

BubblePal, a newly launched AI-based interactive toy, appears to be something that could have inspired the writers of the 2022 sci-fi/horror flick M3GAN, if it hadn’t just been launched last week. Based on large language model (LLM) technology, the ‘

Comprehensive explanation of jQuery filters: discover which elements are filtered Comprehensive explanation of jQuery filters: discover which elements are filtered Feb 27, 2024 pm 01:54 PM

jQuery is a popular JavaScript library that is widely used in web development. In jQuery, filter is a very commonly used function, which can help developers filter out the elements that need to be operated through selectors, thereby achieving effective control of page elements. This article will comprehensively explain jQuery's filter function, mainly introduce how to use filters to discover which elements are filtered, and give specific code examples. 1. Basic filters: first filter first introduces a commonly used filter

Steps to implement the product attribute filter optimization function in PHP Developer City Steps to implement the product attribute filter optimization function in PHP Developer City Jul 01, 2023 am 11:24 AM

Steps to implement the product attribute filter optimization function in PHP Developer Mall With the rapid development of e-commerce, more and more malls need to provide product attribute filters to help users find the products they need. The optimization function of the product attribute filter can further improve the user experience and increase the conversion rate of the website. Below, we will introduce the implementation steps of how to use the product attribute filter optimization function in PHP Developer City. Database design First, we need to design a database to store product-related information and attributes. You can create a product table to store

Discover the secrets of jQuery filters: reveal what features are included Discover the secrets of jQuery filters: reveal what features are included Feb 28, 2024 am 08:21 AM

jQuery is a popular JavaScript library used to simplify DOM manipulation and event handling. In jQuery, filters are a powerful tool that can help developers accurately select the elements on the page that need to be manipulated. This article will explore the mysteries of jQuery filters, reveal the functionality they contain, and provide concrete code examples. 1. Basic filter: first: select the first matching element $("p:first").css("col

How to use child in jquery How to use child in jquery May 22, 2023 pm 04:00 PM

Use of child in jquery: 1. Create an html, jquery sample file; 2. Define the parent element as "parent"; 2. Get all direct child elements through the ".children()" method and save them in the "hildElements" variable; 3. Output the results through the console.

See all articles