作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这里是代码
<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">×</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/
我是一名优秀的程序员,十分优秀!