Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个必须加载到 iframe 中的文档。在该文档中,有几个事件与不同的元素绑定,例如(带有锚标记的 onclick 事件),还有一些插件还与(循环插件,fancybox 插件)等元素绑定。现在我希望当文档加载到 iframe 中时,所有事件都解除绑定。我怎样才能做到这一点?
例如,如果您想取消绑定 div 中的所有内容,您可以执行以下操作:
$('div').unbind();
伟大的。