当我关闭应用程序的任何选项卡时,我想触发注销。我试过了
$(window).on('unload', logout);
和$(window).on('onbeforeunload', logout);
工作正常,但在重新加载页面时也会触发事件。如何在重新加载时阻止此操作?在询问之前,我发现了一些选项,例如event.currentTarget.performance.navigation.type
,但没有可能以这种方式分离重新加载和关闭。是否有任何opputurnity只在选项卡关闭时触发注销?