开发者

Find DOM element containing string matching regular expression [closed]

开发者 https://www.devze.com 2023-04-12 10:23 出处:网络
Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this po
Closed. This question needs to be more focused. It is not currently accepting answers.

Want to improve this question? Update the question so it focuses on one problem only by editing this post.

开发者_StackOverflow社区Closed 1 year ago.

Improve this question

I need to find on HTML page all text fragments matching specific regular expression (that is, I need to ignore tags so that '< span>First name: < /span>< br/>< b>John< /b>' will match 'First name: John'), and than highlight these found fragments (by decorating with new elements and applying custom css styles) and be able to locate these fragments, e.g. be able to scroll these into view. Functionality is similar to what Skype browser plugin is doing with phone numbers found on page.


You can either recursively walk down the DOM looking at the textContent or innerText property (as appropriate) of elements, or you can use loop over the collection returned by getElementsByTagName. Either way, once you have identified the text and the parent element, you need to work out how to replace it.

What are your requirements for document structure in the replacement if the string is split over one or more othere elements?


You could use jQuery selectors to get the <b> tags containing John that come after a <span> tag that contains First name:, and then for instance apply a style:

$("span:contains('First name:') ~ b:contains('John')").css('color','red');

Here is a running example: http://jsfiddle.net/XzwNj/


Did you try something like this?

document.body.innerHTML.replace(/<\/?[^>]+>/g, '')

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号