Say a web page has a string such as "I am a simple string" that I want to find. How would I go about this using JQuery?
|
|
jQuery has the contains method. Here's a snippet for you:
The selector above selects any element that contains the targe string. The foundin will be a jQuery object that contains any matched element. See the API information at: http://docs.jquery.com/Selectors/contains#text One thing to note with the '*' wildcard is that you'll get all elements, including your html an body elements, which you probably don't want. That's why most of the examples at jQuery and other places use $('div:contains("I am a simple string")') |
||||
|
|
|
Normally jQuery selectors do not search within the "text nodes" in the DOM. However if you use the .contents() function, text nodes will be included, then you can use the nodeType property to filter only the text nodes, and the nodeValue property to search the text string.
$('*', 'body')
.andSelf()
.contents()
.filter(function(){
return this.nodeType === 3;
})
.filter(function(){
// Only match when contains 'simple string' anywhere in the text
return this.nodeValue.indexOf('simple string') != -1;
})
.each(function(){
// Do something with this.nodeValue
});
|
||||||
|
|
|
Take a look at highlight (jQuery plugin). |
||
|
|
|
|
If you just want the node closest to the text you're searching for, you could use this:
This will even work if your HTML looks like this:
Using the above selector will find the |
||
|
|
|
|
This will select just the leaf elements that contain "I am a simple string".
Paste the following into the address bar to test it. javascript: $('*:contains("I am a simple string")').each(function(){ if($(this).children().length < 1) $(this).css("border","solid 2px red") }); return false; If you want to grab just "I am a simple string". First wrap the text in an element like so.
and then do this.
|
||||
|
