问题
How detect "refresh" event with prototype? A Cross-browser solution?
Thanks, Celso
回答1:
There's no way to detect refreshes in particular, but you can catch the browser before the page gets unloaded (which happens when the user refreshes the page - as well as when they 'move' to another page)
In prototype this would look something like this:
Event.observe(window, 'beforeunload', yourFunction);
If you need to tell the difference, you could always bind some code to the links on your page that disables the above binding so that when the user actively clicks something you know it's a link (and not a refresh).
来源:https://stackoverflow.com/questions/6627427/how-detect-refresh-event-with-prototype