小程序 微信小程序

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

小新
553
2021-03-19 15:19:47
栏目: 云计算

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

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

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

0
看了该问题的人还看了