admin管理员组文章数量:1341749
I have been trying to implement a functionality when the page refreshes. I figured that value of
window.performance.navigation.type
turns 1 if the page reloads else, it is 0. I created an alert message on page load and the values are correct for IE and Firefox but it remains "0" for Chrome throughout no matter how many times the page reloads. I have also tried windows.onbeforeunload as per other stackoverflow answers but nothing seems to work!
How do I resolve this?
OR
Is there another way to detect a page reload that works on all the browsers?
Thanks!
I have been trying to implement a functionality when the page refreshes. I figured that value of
window.performance.navigation.type
turns 1 if the page reloads else, it is 0. I created an alert message on page load and the values are correct for IE and Firefox but it remains "0" for Chrome throughout no matter how many times the page reloads. I have also tried windows.onbeforeunload as per other stackoverflow answers but nothing seems to work!
How do I resolve this?
OR
Is there another way to detect a page reload that works on all the browsers?
Thanks!
Share Improve this question edited Sep 14, 2017 at 18:39 Gsm asked Sep 14, 2017 at 18:36 GsmGsm 1501 gold badge2 silver badges10 bronze badges 4- 1 Chrome does not support this: developer.mozilla/en-US/docs/Web/API/PerformanceNavigation – Dekel Commented Sep 14, 2017 at 18:37
- Possible duplicate of Check if page gets reloaded or refreshed in Javascript – pvg Commented Sep 14, 2017 at 18:38
- @Dekel odd isn't this the doc api says chrome 10 + support? edit nvm that's the parent info – Andrei Commented Sep 14, 2017 at 18:43
- @Andrei, Gsm added an answer regarding this. – Dekel Commented Sep 14, 2017 at 18:46
3 Answers
Reset to default 7As of 2017-11-01, Chrome (61.0.3163.100) does support the performance.navigation API. See this gist for some sample code that you can throw into a page and see it working.
I cannot find the Chromium ticket tracking the development, but this Chromium blog post links to the W3 spec that defines the performance.navigation API, so perhaps it was supported fully in a recent release.
According to the docs, the Performance.navigation
property returns a PerformanceNavigation
object.
Checking the browsers patibility at the bottom of the page you can see that chrome is not supported.
Just checked the MDN for these instance properties and it's now supported in chrome.
本文标签: javascriptwindowperformancenavigationtype works in IE and Firefox but NOT in CHROMEStack Overflow
版权声明:本文标题:javascript - window.performance.navigation.type works in IE and Firefox but NOT in CHROME - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743632747a2513389.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论