微信小程序如何制止页面返回
微信小程序制止页面返回的案例:
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);
本文来源:https://www.yuntue.com/post/71613.html | 云服务器网,转载请注明出处!