


Detailed explanation of jQuery filter children() case (picture and text)_jquery
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:
.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:
Requirement 1: Change the font color of all div children to red
$("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
$("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
$("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
$("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
$("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:
$("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.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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 ‘

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? 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, 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 ‘

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 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

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

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.
