Linux 拨号vps windows公众号手机端

微信小程序如何禁止页面返回

lewis 7年前 (2018-09-10) 阅读数 9 #VPS/云服务器

微信小程序禁止页面返回的案例:

1.微信小程序中不允许用户返回上一页的操作代码。

//用wx.redirectTo来做跳转页面

wx.redirectTo({

url:'/pages/index/index'

})

2.移动端小程序阻止手机返回键返回到上一页。

$(function(){

history.pushState(null,null,document.URL);

window.addEventListener('popstate',function(){

history.pushState(null,null,document.URL);

});

});

//跳转页面的使用

top.window.location.replace(url);

版权声明

本文仅代表作者观点,不代表米安网络立场。

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

热门