小陆博客

为站长提供建站技巧、网站运营、搜索优化、建站方向以及利用网站赚钱与创业的知识与经验。

热门搜索:

使用vue开发webApp,安卓手机自带回退键的问题解决 - 流浪_光头 - 博客园

10519 浏览
0 评论
点击跳转 链接
内容
```js mounted(){   if (window.history && window.history.pushState) {     history.pushState(null, null, document.URL);     window.addEventListener('popstate', this.fun, false);//false阻止默认事件   } }, destroyed(){ window.removeEventListener('popstate', this.fun, false);//false阻止默认事件 }, methods:{ fun(){ console.log("监听到了"); } } ```
```js mounted(){   if (window.history && window.history.pushState) {     history.pushState(null, null, document.URL);     window.addEventListener('popstate', this.fun, false);//false阻止默认事件   } }, destroyed(){ window.removeEventListener('popstate', this.fun, false);//false阻止默认事件 }, methods:{ fun(){ console.log("监听到了"); } } ```

评论 (0)

评论功能正在开发中...