只销毁 jQuery 中元素的内部 DOM
我已经使用 NobleCount 实现了一个计数器,如下所示:
$('#message').NobleCount('#messageInfo',{
max_chars: max,
block_negative: true
});
出于某种原因,我需要更新计数器。但仅调用上面的代码来更新计数器并没有帮助。
所以我想从 #messageInfo 框中删除所有 DOM。但是 remove()
也会删除 #messageInfo 元素本身。
知道如何仅删除 #messageInfo 的内部 DOM 吗?
I have implemented a counter using NobleCount like this:
$('#message').NobleCount('#messageInfo',{
max_chars: max,
block_negative: true
});
For some reason I need to update the counter. But it does not help to just call the code above to update the counter.
So I thought to remove all DOM from the #messageInfo box. But remove()
removes the #messageInfo element itself too.
Any idea how to remove just the inner DOM of #messageInfo?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用
empty()
-You can try using
empty()
-