当进行更改并重定向到其他页面时,尤其是在登录或注销期间,会发生这种情况。 onprevice ready 的代码是,
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
//alert("ready");
navigator.splashscreen.hide();
window.onbeforeunload = null;
}
请建议隐藏此原生弹出窗口的方法..
答案 0 :(得分:1)
在代码中添加以下行
window.onbeforeunload = null;
此行不需要放在deviceready事件侦听器中。它可以放在单击后退按钮或页面重新加载期间调用的函数上。