浏览器回退事件监听
(function(){
if (window.history && window.history.pushState) {
$(window).on('popstate', function () {
//do something
});
}
window.history.pushState('forward', null, '#');
window.history.forward(1);
})();

浙公网安备 33010602011771号