如何在 html 页面中捕获新请求(例如链接点击、页面刷新等)?
假设当用户决定转到另一个页面或刷新当前页面时,我需要做一些事情。
查看window.onbeforeunload
和window.onunload
事件
您还可以轻松捕获任何链接 [jQuery 示例]:
$('a').on('click', function() {
// do your stuff
// follow the link
window.location.href = this.href;
});