微信小程序阻止用户返回上一页,并弹窗给用户确定是否要返回上一页

在onload中调用微信的enableAlertBeforeUnload方法,在首次进入会自动监听当前的页面,在返回的时候会自动弹出弹窗阻止用户返回上一页,点击确定则返回上一页,取消则停留在当前页

onLoad: function(){
    
    
    wx.enableAlertBeforeUnload({
    
    
      message: "返回上页时弹出对话框1212",
      success: function (res) {
    
    
        console.log("方法注册成功:", res);
      },
      fail: function (errMsg) {
    
    
        console.log("方法注册失败:", errMsg);
      },
    });
}

猜你喜欢

转载自blog.csdn.net/xiaokangna/article/details/132139589
今日推荐