本文介绍了angular4 中的浏览器关闭事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在 angular 4.0.2 中检测浏览器关闭事件

我试过了

  1. @HostListener('window:unload', ['$event'])卸载处理器(事件){...}

@HostListener('window:beforeunload', ['$event'])beforeunloadHandler(事件){...}

但不适合我.谁能帮我吗.如果我刷新页面,则此事件也会触发

在 angular2/4 中需要单独的浏览器关闭事件

推荐答案

如果你想关闭事件弹窗,你需要设置$event.returnValue

You need to set $event.returnValue if you want close event popup

Inside component

    @HostListener('window:beforeunload', ['$event'])
     public beforeunloadHandler($event) {
     $event.returnValue = "Are you sure?";
    }

这篇关于angular4 中的浏览器关闭事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 01:46