jQuery 从 HTML 中选择文本

发布于 2024-10-04 21:08:17 字数 65 浏览 3 评论 0原文

我希望获取页面的 HTML 搜索某些文本,然后使用 jQuery 选择它所属的元素。不幸的是,元素没有唯一的 ID。

I'm looking to get the HTML of the page search for some text and then select the element it belongs to with jQuery. Unfortunately there are no unique IDs for the elements.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

如歌彻婉言 2024-10-11 21:08:17

你应该能够做到这一点

var element = $('*:contains("search text")');

You should be able to do this

var element = $('*:contains("search text")');
眼中杀气 2024-10-11 21:08:17

考虑一下:

<div><span>some text</span></div>

然后,要在搜索时仅获取 span,请执行以下操作:

var elements = $('body *').contents().filter(function() {
    return this.nodeType == 3 && $(this).text().indexOf("some text") != -1;
}).parent();

如果在其他地方找到该文本,elements 也将包含其他元素。例如:

<div><span>some text</span><p>some text</p><strong>not the same text</strong></div>

结果将包含 spanp 元素。

最后一个示例:

<div>some text<span>some text</span><p>some text</p><strong>not the same text</strong></div>

现在结果也将具有 div,因为它是文本节点的直接父节点(即 some text

Consider this:

<div><span>some text</span></div>

Then, to get only the span when you do the search, do this:

var elements = $('body *').contents().filter(function() {
    return this.nodeType == 3 && $(this).text().indexOf("some text") != -1;
}).parent();

If the text is found elsewhere, elements will contain the other elements as well. For example:

<div><span>some text</span><p>some text</p><strong>not the same text</strong></div>

Results will contain the span and the p elements.

A final example:

<div>some text<span>some text</span><p>some text</p><strong>not the same text</strong></div>

Now results will have the div too, as it is the direct parent of the text node (i.e. some text)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文