gpt4 book ai didi

jquery - 使用 jQuery 选择器选择没有 ID 或类的文本

转载 作者:行者123 更新时间:2023-12-01 07:19:41 25 4
gpt4 key购买 nike

使用以下模板,我怎样才能获得“获取此文本”

<h1 class="classA classB">
Obtain this text
<span class="unwanted">
unwanted text
</span>
</h1>

我尝试了 $('.classA.classB:not(.unwanted)') 但我得到了整个东西,没有不需要的。

最佳答案

$("#foo")
.clone() //clone the element
.children() //select all the children
.remove() //remove all the children
.end() //again go back to selected element
.text(); //get the text of element

.remove() 接受一个选择器,因此您可以执行类似 .remove('.unwanted')

的操作

来源 http://viralpatel.net/blogs/jquery-get-text-element-without-child-element/

演示

http://viralpatel.net/blogs/demo/jquery/get-text-without-child-element/

提问前请先谷歌一下

关于jquery - 使用 jQuery 选择器选择没有 ID 或类的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15193194/

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