jquery 选择器 - 选择不在另一个嵌套标签内的值

发布于 2024-10-07 23:34:03 字数 373 浏览 3 评论 0原文

是否可以选择不在另一个嵌套标签内的标签的值?

例如,在下面的代码中,我想从 $('#example') 获取“我想选择的文本”。

<td id="example">
    <a> Text I don't want to select</a>
    <span> Other text I don't want to select</span>
    Text I want to select
    <anyOtherTag> Other text I don't want to select</anyOtherTag>
</td>

谢谢。

Is it possible to select the value of a tag which is not inside another nested tag?

For example in the following code I want to get ' Text I want to select' from $('#example').

<td id="example">
    <a> Text I don't want to select</a>
    <span> Other text I don't want to select</span>
    Text I want to select
    <anyOtherTag> Other text I don't want to select</anyOtherTag>
</td>

Thanks.

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

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

发布评论

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

评论(1

顾忌 2024-10-14 23:34:03

您可以使用 .contents().filter() 向下到文本节点类型 (nodeType == 3) ,就像这样:

var text = $("#example").contents().filter(function() { 
              return this.nodeType == 3; 
           }).text();
alert($.trim(text));

您可以在这里尝试。由于 .text() 获取所有文本节点,包括其他空白,您可能需要 $.trim() (因为 IE<9 没有 String.trim()) 结果就像我上面的那样。

You can use .contents() and .filter() down to text node types (nodeType == 3), like this:

var text = $("#example").contents().filter(function() { 
              return this.nodeType == 3; 
           }).text();
alert($.trim(text));

You can try it out here. since .text() gets all text nodes, including the other whitespace, you probably want to $.trim() (since IE<9 doesn't have String.trim()) the result like I have above.

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