重定向到浏览器刷新按钮上的其他页面,点击

时间:2019-03-29 05:53:30

标签: javascript page-refresh

我希望在单击浏览器刷新按钮后将用户重定向到其他页面,但我无法这样做。我曾尝试使用onbeforeunload,但它似乎无法满足我的要求,因为它给出了“离开并停留”的消息,但即使在chrome上似乎也不起作用。因此,如何在单击浏览器刷新按钮时将用户重定向到其他页面。

我尝试过的代码:

<html>
<body>
<script>
window.onbeforeunload = function(e) {
  return 'Dialog text here.';
};
</script>
</body>
</html>

关于, 鲁沙卜

2 个答案:

答案 0 :(得分:0)

您必须在页面加载中检查let Count = toscalar( range x from 1 to 1 step 1 | count ); print assert(Count != 0, "Count must be non-zero") 。这是您可以尝试的方法。

performance.getEntriesByType

答案 1 :(得分:0)

您可以尝试以下方法:

  if (performance.navigation.type == 1) {
    location.href='https://www.google.com';
  } else {
    console.log( "Not reloaded");
  }