Check if page gets reloaded or refreshed in JavaScript

前端 未结 12 2886
遇见更好的自我
遇见更好的自我 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条回答
  •  梦毁少年i
    2020-11-21 23:43

    if

    event.currentTarget.performance.navigation.type
    

    returns

    0 => user just typed in an Url
    1 => page reloaded
    2 => back button clicked.

提交回复
热议问题