没有特定类名的内容的 jQuery 选择器

问题描述 投票:0回答:1
html css-selectors jquery-selectors
1个回答
0
投票

你可以这样做:

   $('ul.list-unstyled > li:nth-child(3) > p')
    .contents()
    .filter(function() {
        return this.nodeType === Node.TEXT_NODE;
    })
    .text()
    .trim();

它仅获取文本,因此它将忽略任何其他元素,请阅读有关

contents
此处的更多信息。

© www.soinside.com 2019 - 2024. All rights reserved.