我在javaScript上捕获了浏览器的来回事件
window.onpopstate = this.getBackForwardEvents
然后我将某个变量boolean
的值设为true
_fwdBckButtonVar = false;
getBackForwardEvents(e){
_fwdBckButtonVar = true;
}
现在,当单击浏览器的后退或前进按钮时,我将_fwdBckButtonVar
设为true
。
如何捕获不是 window.onpopstate 的事件,以便将其设置为false