vue JS实现监听浏览器返回按键事件
Posted justinwei 的Blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue JS实现监听浏览器返回按键事件相关的知识,希望对你有一定的参考价值。
// 这个是监听浏览器回退键的
returnButton () {
let vm = this;
$(document).ready(function () {
if (window.history && window.history.pushState) {
$(window).on(‘popstate‘, function () {
window.history.pushState(‘forward‘, null, ‘#‘);
window.history.forward(1);
vm.goToPreview();
});
}
window.history.pushState(‘forward‘, null, ‘#‘); //在IE中必须得有这两行
window.history.forward(1);
});
},
以上是关于vue JS实现监听浏览器返回按键事件的主要内容,如果未能解决你的问题,请参考以下文章