[removed] not working in chrome

后端 未结 9 806
遥遥无期
遥遥无期 2020-11-27 07:25

This is the code which i used for window.onbeforeunload......




        
9条回答
  •  渐次进展
    2020-11-27 08:31

    Try this, it worked for me:

    window.onbeforeunload = function(event) {
        event.returnValue = "Write something clever here..";
    };
    

提交回复
热议问题