gpt4 book ai didi

javascript - 如何在段落中找到一个不强的元素

转载 作者:行者123 更新时间:2023-11-30 08:37:32 26 4
gpt4 key购买 nike

我有一段是这样的:

<p>
<strong>Cost:</strong>
$1,500 - $10,000 (see below for details)
</p>

我想首先选择 strong 文本,然后选择 not strong 文本。

我正在尝试以下操作:

$('p').not('strong').html()

$('p:not("strong")')

但似乎没有效果。

最佳答案

如果你需要的 p 元素中没有 strong ,那么你还需要结合 :has 选择器

$('p:not(:has(strong))')

用于获取没有强内容的文本节点文本:

$('p').clone().children().remove().end().text();//returns  $1,500 - $10,000 (see below for details)

获取强元素文本:

 $('p strong').text();//return Cost:

Working Demo

关于javascript - 如何在段落中找到一个不强的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30035523/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com