微信小程序禁止页面返回的案例:
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);
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: 如何实现小程序的数据存储与管理