jQuery的remove()回调?
是否有官方方法可以挂钩 jQuery.remove() 以便可以在之前/之后调用函数?
我有一个系统,其中某些处理程序附加到元素,有时这些元素被删除(例如,其主要元素被页面上的某些其他操作删除的 UI 小部件)。如果可以通知处理程序其主要元素已被删除,我可以更轻松地运行清理例程。
Is there an official way to hook in to jQuery.remove() so that a function can be called before/after?
I have a system whereby certain handlers are attached to elements, and sometimes these elements are removed (eg. a UI widget whose primary element is removed by some other action on the page). If handlers could be notified that their primary element was removed, I can run cleanup routines a little easier.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 jQuery.when():
you can use jQuery.when():
使用自定义事件,将处理程序附加到在删除之前/之后触发的自定义事件。例如,
Use a custom event, attach handlers to the custom event that fire before/after the remove. For example,
这是一个巧妙的技巧 - 你可能想尝试一下。
Here's a nifty hack - you might wanna give it a try.