在“空”函数(http://api.
jquery.com/empty/)的jquery文档中,有以下语句:
"To avoid memory leaks,jQuery removes other constructs such as data and event handlers from the child elements before removing the elements themselves."
文字说:“…… jQuery从!C H I L D!元素中移除事件处理程序……”.但我希望事件处理程序也从div标签中删除($(“#mydiv”).empty).我知道有“删除”功能,但我的意图是不删除div标签.完成这项工作的最佳方法是什么?
另一件事是:
当他们说“删除事件处理程序”时.他们只删除用“bind”制作的构造,还是删除用“delegate”制作的构造?
非常感谢提前