我有一个网站,如果用户导航到某个页面,他会根据页面上的某些条件收到对话框通知。用户可以从该页面导航到其他页面,当然也可以按下这些页面上的后退按钮导航回该页面。
我想检测用户是否通过后退按钮到达该页面,这样对话框通知就不会再次显示(因为用户已经看到了)。
有没有办法可靠地检测到这一点?
MDN窗口事件列表
你最好的选择可能是window.onpageshow = function(){};
窗口上pageshow事件的事件处理程序属性。
window.onpageshow = function(event) {
if (event.persisted) {
alert("From back / forward cache.");
}
};
输入技巧不再有效。这是我使用的解决方案:
if (window.performance && window.performance.navigation.type === window.performance.navigation.TYPE_BACK_FORWARD) {
alert('Got here using the browser "Back" or "Forward" button.');
}
最好的(尽管不是TREMENDOUSLY可靠的)方法是使用Javascript历史对象。您可以查看history.provious页面,看看它是否是该系列的下一个。这不是一个很好的解决方案,但也许是解决问题的唯一方法。
我喜欢在输入字段中使用一个值:-
<input type="hidden" id="fromHistory" value="" />
<script type="text/javascript">
if (document.getElementById('fromHistory').value == '') {
document.getElementById('fromHistory').value = 'fromHistory');
alert('Arrived here normally');
} else {
console.log('Arrived here from history, e.g. back or forward button');
}
</script>
这之所以有效,是因为如果浏览器从历史导航回该字段,则会用javascript放在其中的值重新填充该字段的值:-)