Jquery在网页完整可见文本上使用正则表达式提取文本
我知道 James Padolsey 的 jQuery 正则表达式插件: http://james. padolsey.com/javascript/regex-selector-for-jquery/
但我需要一些不同的东西:
- 正则表达式应该在网页的整个可见文本中搜索。
- 我想获取文本本身,而不是包含它们的元素。
以下将符合要求 1,但不符合要求 2:
$('*').filter(function() {
return this.text().match(/\d\d\d/);
});
知道如何才能以良好的性能做到这一点吗?
I am aware of the jQuery regex plugin of James Padolsey: http://james.padolsey.com/javascript/regex-selector-for-jquery/
But I need something different:
- The regular expression should search in the whole visible text of the web page.
- I want to get the text itself, not the element containing them.
The following will match requirement 1, but not 2:
$('*').filter(function() {
return this.text().match(/\d\d\d/);
});
Any idea how i can do this with a good performance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该会为您提供所有匹配项的
Array
。jsFiddle。
This should get you an
Array
of all matches.jsFiddle.