节点删除和事件处理程序
只是有趣... 当我从 DOM 树中完全删除节点的事件处理程序时,会发生什么情况?这意味着,如果我稍后创建一个与删除的节点具有相同 id 的节点,它是否会有相同的事件处理程序?
Just interesting...
What happens to node's event handlers when I remove it completely from the DOM tree? That means, if I create a node with the same id as removed node later, will it have the same event handlers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,据我所知,新节点上不会有事件处理程序。
No, there will be no event handlers on the new node, afaik.
为什么不使用 Firebug 控制台来尝试一下呢?只需删除一个节点,然后使用相同的 ID 重新创建它就可以回答您的问题。
Why don't you try It using the Firebug console. Just removing a node and then recreating It with the same ID would answer your question.