2017-08-16 144 views
0

Pop up image如何刪除手機應用程序

更改時,尤其是登錄或註銷時重定向到其他頁面會出現這種情況確認導航彈出。 代碼ondevice準備是,

 document.addEventListener("deviceready", onDeviceReady, false); 

function onDeviceReady() { 
    //alert("ready"); 
    navigator.splashscreen.hide(); 
    window.onbeforeunload = null; 
} 

請提出一個方法來隱藏這個本地彈出..

+1

我想它是一個寫在你的腳本中的自定義邏輯。要禁用此功能,請添加window.onbeforeunload = null;在你的腳本中 – Gandhi

+0

請在描述中檢查我的腳本,我已經添加了window.onbeforeunload = null; @Gandhi –

+0

window.onbeforeunload = null;不需要在設備就緒事件監聽器內部。您的設備準備好的監聽器正在被調用? – Gandhi

回答

1

添加以下行的代碼,

window.onbeforeunload =空值;

該行不需要放置在deviceready事件偵聽器中。它可以放在它在點擊後退按鈕期間或頁面重新加載期間調用的函數上。

相關問題