📅  最后修改于: 2020-11-26 07:12:06             🧑  作者: Mango
jQuery unload()方法用于卸载特定元素。它将事件处理程序附加到卸载事件。当用户离开页面导航时,将把unload事件发送到window元素。在jQuery库的jQuery 1.8版本中不推荐使用。
如果您执行以下操作,则会触发卸载事件:
句法:
$(selector).unload(function)
它将一个函数添加到unload事件。
Parameter | Description |
---|---|
Function | It is an essential parameter. It executes itself when the unload event is triggered. |
让我们以一个示例来演示jQuery unload()事件。
When you click this link, or close the window,
unload event will be triggered.