gpt4 book ai didi

jquery - 删除某个按钮后 div 内没有元素的文本

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

这里是代码

<div
id="user-alert"
class="alert alert-danger col-md-offset-1 col-md-10 alert-dismissible"
role="alert"
>
<button type="button" class="close" data-hide="alert" aria-hidden="true">
<span aria-hidden="true">&times;</span>
</button>
myquestion is,, how to remove/delete this text using jquery, just this text only,,
</div>

我已经尝试过 $('#user-alert :not(:first-child)').remove(); 但它不起作用

我也尝试了$('#user-alert button.close).text('')仍然不起作用

最佳答案

试试这个已更新

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

关于jquery - 删除某个按钮后 div 内没有元素的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39919390/

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