gpt4 book ai didi

javascript - 获取 div 的文本而不是跨度

转载 作者:行者123 更新时间:2023-11-30 08:03:39 25 4
gpt4 key购买 nike

我有这个演示并尝试获取 div 的文本。

<script>
var string = "<span>this is span</span>new line";
var anchors = $('<div/>').append(string).find('span').text();
console.log(anchors);
</script>

div 看起来像

<div>
<span>this is span</span>
new line
</div>

输出:-

this is span

并且想要换行

最佳答案

这样试试

如果 div 有一个 id foo 或 class foo

$("#foo") //can not use div as will target all the divs
.clone() //clone the element
.children() //select all the children
.remove() //remove all the children
.end() //again go back to selected element
.text();

或者

$("#foo").contents()
.filter(function() {
return this.nodeType === 3;
}).text()

DemoFiddle

关于javascript - 获取 div 的文本而不是跨度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22035597/

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