gpt4 book ai didi

javascript - jQuery 获取文本但没有 html

转载 作者:行者123 更新时间:2023-11-28 21:18:36 24 4
gpt4 key购买 nike

Possible Duplicate:
Getting the contents of an element WITHOUT its children

我怎样才能得到foobar使用 jquery/javascript 生成以下 HTML,而不使用正则表达式?

<div id="somediv">
foobar
<span></span>
</div>

最佳答案

只需使用 .text() .

$("#somediv").text();

或者,如果 span 包含您想要忽略的内容,请使用:

$("#somediv").contents().first().text();

关于javascript - jQuery 获取文本但没有 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6968765/

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