只销毁 jQuery 中元素的内部 DOM

发布于 2024-10-16 00:24:54 字数 419 浏览 2 评论 0原文

我已经使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你又不是我 2024-10-23 00:24:54

您可以尝试使用 empty() -

$('#message').empty();

You can try using empty() -

$('#message').empty();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文