嗨,我想知道如何在浏览器选项卡关闭时提示消息。我正在使用 Reactjs。
handleWindowClose(){
alert("Alerted Browser Close");
},
componentDidMount: function() {
window.addEventListener('onbeforeunload', this.handleWindowClose);
},
componentWillUnmount: function() {
window.removeEventListener('onbeforeunload', this.handleWindowClose);
}
这是我尝试添加到我的react组件中的内容。请指导我如何进一步进行。