gpt4 book ai didi

jQuery 从 :not 的 div 中选择文本

转载 作者:行者123 更新时间:2023-12-01 03:50:10 25 4
gpt4 key购买 nike

我做了一个 fiddle :http://jsfiddle.net/hAzJq/

如何选择 div 内但不在 span 内的文本?

alert($("div").not('span').text());​

最佳答案

首先使用 .contents,这将提取文本节点和 HTML 节点,并应用 :not 选择器来过滤 span :

alert($("div").contents(':not(span)').text())​​​​​​​​​​​​;

也就是说,一种更简单的方法可能是应用不同的 span 以及围绕您确实想要的内容的特殊类,然后选择它。

关于jQuery 从 :not 的 div 中选择文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9739609/

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