gpt4 book ai didi

jQuery - 删除 HTML 值

转载 作者:行者123 更新时间:2023-12-01 06:14:23 25 4
gpt4 key购买 nike

我想删除 HTML 中的一些值:

<td valign="top" class="ms-formbody">
<div class="sputility-readonly">12</div>
99.99
</td>

我想删除“99.99”,可以吗?

最佳答案

您可以过滤文本节点的内容:

$('.ms-formbody').contents().filter(function(){
return this.nodeType === 3; //nodeType 3 is a text node.
}).remove();

http://jsfiddle.net/o86upesc/1/

关于jQuery - 删除 HTML 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25666612/

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