Check if page gets reloaded or refreshed in JavaScript

前端 未结 12 2863
遇见更好的自我
遇见更好的自我 2020-11-21 22:57

I want to check when someone tries to refresh a page.

For example, when I open a page nothing happens but when I refresh the page it should display an alert.

12条回答
  •  粉色の甜心
    2020-11-21 23:36

    I found some information here Javascript Detecting Page Refresh

    function UnLoadWindow() {
        return 'We strongly recommends NOT closing this window yet.'
    }
    
    window.onbeforeunload = UnLoadWindow;
    

提交回复
热议问题