简体   繁体   中英

If element contains certain text

$('.test').css('background','red');

<div id="example">Some text</div>

How can I .addClass('test') if #example contains the word "text"?

just use :contains pseudoclass

$('#example:contains("text")').addClass('test');

this will add the class to #example if it contains 'text'

You can use $("#example") to get a jQuery wrapper for the element, then use text() to get its text, and use String#indexOf , eg:

var ex = $("#example");
if (ex.text().indexOf("text") !== -1) {
    ex.addClass("test");
}

You can also use :contains("text") in the selector as F. Calderan shows , although note that when you use non-standard pseudo-selectors like that, jQuery can't use the underlying browser's built-in stuff for finding elements, so it can be slower. The above will allow jQuery to use document.getElementById . There are only a few situations where the speed really matters, though.

try the following code

$('#example:contains("text")').addClass('test');

Have a look here for examples and explanations of the :contains selector

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM