Home >Web Front-end >JS Tutorial >A Comprehensive Look at jQuery Selectors
This article benefited from peer review by Matt Smith and Tim Severien. Thanks to SitePoint's peer reviewers for enhancing content quality!
Selecting elements is fundamental to manipulating web pages with jQuery. Whether you're modifying content, attaching events, or performing other actions, you'll need to target the right elements first. This tutorial explores jQuery selectors, a key component of the library.
Key Concepts
:visible
and :hidden
(up to 17x faster in some cases). Visibility is now determined by the presence of a layout box from getClientRects
.jQuery Selectors in Detail
jQuery selectors primarily identify elements based on criteria like ID, class, attributes, or combinations. Many are based on CSS selectors, but jQuery extends functionality with custom selectors.
Select elements by ID ($("#id")
), class ($(".class")
), or tag name ($("li")
). Combine these (e.g., $(".class tag")
) or use multiple selectors separated by commas (e.g., $("selectorA, selectorB, selectorC")
).
Additional basic selectors:
:header
: Selects all headings (<h1></h1>
to <h6></h6>
). More concise than individually listing each heading tag.:target
: Selects the element whose ID matches the URL fragment identifier (e.g., https://example.com/#myElement
).:animated
: Selects elements currently undergoing animation (requires the jQuery effects module).jQuery offers zero-based index selectors:
:eq(n)
: Selects the element at index n
(supports positive and negative indices).:lt(n)
: Selects elements with an index less than n
.:gt(n)
: Selects elements with an index greater than or equal to n
.:first
: Selects the first matched element.:last
: Selects the last matched element.:even
: Selects elements with even indices (0, 2, 4...).:odd
: Selects elements with odd indices (1, 3, 5...).Interactive demo showcasing index-based selectors
These selectors target children based on index or type:
:first-child
: Selects the first child of each parent.:first-of-type
: Selects the first sibling of its type.:last-child
: Selects the last child of each parent.:last-of-type
: Selects the last sibling of its type.:nth-child(n)
: Selects the nth child (supports various expressions like numbers, even
, odd
, formulas).:nth-last-child(n)
: Similar to :nth-child
, but counts from the last child.:nth-of-type(n)
: Selects the nth sibling of its type.:nth-last-of-type(n)
: Similar to :nth-of-type
, but counts from the last sibling.:only-child
: Selects elements that are the only child of their parent.:only-of-type
: Selects elements with no siblings of the same type.Interactive demo showcasing child selectors
Select elements based on attribute values:
[attribute="value"]
: Selects elements with the exact attribute value.[attribute^="value"]
: Selects elements whose attribute value begins with "value".[attribute$="value"]
: Selects elements whose attribute value ends with "value".[attribute*="value"]
: Selects elements whose attribute value contains "value".[attribute|="value"]
: Selects elements whose attribute value is equal to or starts with "value" followed by a hyphen.[attribute~="value"]
: Selects elements whose attribute value contains "value" as a space-separated word.[attribute!="value"]
: Selects elements without the attribute or with a different value.[attribute]
: Selects elements with the specified attribute, regardless of value.These selectors target elements based on their content:
:contains(text)
: Selects elements containing the specified text (case-sensitive).:has(selector)
: Selects elements containing at least one element matching the provided selector.:empty
: Selects elements with no children.:parent
: Selects elements with at least one child.These selectors use the DOM hierarchy:
ancestor descendant
: Selects all descendants of the ancestor element.parent > child
: Selects direct children of the parent element.prev next
: Selects the next sibling of the prev
element.prev ~ siblings
: Selects all subsequent siblings of the prev
element.Simplified selectors for form elements:
:button
: Selects button elements.:checkbox
: Selects checkbox elements.:radio
: Selects radio button elements.:text
: Selects text input elements.:password
: Selects password input elements.:submit
: Selects submit button elements.:reset
: Selects reset button elements.:image
: Selects image button elements.:file
: Selects file input elements.:hidden
: Selects hidden form elements.:enabled
: Selects enabled form elements.:disabled
: Selects disabled form elements.:checked
: Selects checked checkboxes and radio buttons, and selected options.:selected
: Selects selected options in <select></select>
elements.:visible
: Selects visible elements.:hidden
: Selects hidden elements.jQuery 3 Changes
jQuery 3 introduced performance improvements for :visible
and :hidden
, and refined the definition of visibility. Error handling for invalid selectors was also enhanced.
Caching for Performance
Caching selected elements improves performance by avoiding repeated DOM scans. Store selections in variables for reuse.
Conclusion
This tutorial comprehensively covers jQuery selectors. Remember to utilize caching for optimal performance. Understanding these selectors is crucial for effective jQuery development.
Frequently Asked Questions (FAQs)
The FAQs section from the original input is already well-structured and comprehensive. I would suggest keeping it as is, perhaps with minor wording adjustments for improved flow and clarity.
The above is the detailed content of A Comprehensive Look at jQuery Selectors. For more information, please follow other related articles on the PHP Chinese website!