溫馨提示×

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

小新
666
2021-03-19 15:19:47
欄目: 云計算

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

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

1.微信小程序中不允許用戶返回上一頁的操作代碼。

//用wx.redirectTo來做跳轉(zhuǎn)頁面

wx.redirectTo({

url: '/pages/index/index'

})

2.移動端小程序阻止手機返回鍵返回到上一頁。

$(function(){

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

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

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

});

});

//跳轉(zhuǎn)頁面的使用

top.window.location.replace(url);

0