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

博主:xiaoweixiaowei 2023-01-18 条评论

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

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

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);

The End

发布于:2023-01-18,除非注明,否则均为 主机评测原创文章,转载请注明出处。