Home > Article > Web Front-end > How to find elements by text with jQuery
jQuery can find elements in text through the ":contains()" selector. Its syntax is "$(":contains(text)")", and the parameter text refers to the text to be found.
The operating environment of this tutorial: windows10 system, jquery2.2.4, this article is applicable to all brands of computers.
Recommended: "jquery video tutorial"
jQuery finds elements through text
jQuery can use:contains() selection to find the element by looking for its text content.
:contains() selector selects elements that contain the specified string.
The string can be text contained directly in the element, or contained in a child element.
The most common usage: used with other selectors to select elements that contain specified text in a specified combination (such as the example above).
Note: Text is case-sensitive.
Syntax:
$(":contains(text)")
Parameter text is required and specifies the text to be found.
The above is the detailed content of How to find elements by text with jQuery. For more information, please follow other related articles on the PHP Chinese website!