gpt4 book ai didi

相当于 jQuery 的 .detach() 函数的 Javascript

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:58:05 25 4
gpt4 key购买 nike

我正在寻找一个 JavaScript 函数,它与 jQuery 的 detach() 做同样的事情(从 DOM 中分离元素而不删除它)。我遇到了this ,但这不是官方支持的功能。 JavaScript 是否内置了类似于 .detach() 的函数?

最佳答案

是这样的吗?

function detach(node) {
return node.parentElement.removeChild(node);
}

或者,甚至你也可以只使用 node.parentElement.removeChild(node)

简要说明。来自 MDN

The Node.removeChild() method removes a child node from the DOM. Returns removed node.

The removed child node still exists in memory, but is no longer part of the DOM. ... you may reuse the removed node later in your code....

关于相当于 jQuery 的 .detach() 函数的 Javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49419353/

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