0
更改時,尤其是登錄或註銷時重定向到其他頁面會出現這種情況確認導航彈出。 代碼ondevice準備是,
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
//alert("ready");
navigator.splashscreen.hide();
window.onbeforeunload = null;
}
請提出一個方法來隱藏這個本地彈出..
我想它是一個寫在你的腳本中的自定義邏輯。要禁用此功能,請添加window.onbeforeunload = null;在你的腳本中 – Gandhi
請在描述中檢查我的腳本,我已經添加了window.onbeforeunload = null; @Gandhi –
window.onbeforeunload = null;不需要在設備就緒事件監聽器內部。您的設備準備好的監聽器正在被調用? – Gandhi