2014-05-15 28 views
1

如何擺脫Web瀏覽器的默認提示? 下面是我的coffescript。 enter image description here在卸載前用自己的jQuery替換默認提示

$(window).on 'beforeunload', (e) -> 
    e.preventDefault() 
    question = "<h4 class='text-center'>The actual changes for black/white list will be lost.</h4>" 
    bootbox.confirm question, (result) -> 
     if result 
      $.post url,() -> 
       window.location.reload() 
+2

你不能,就這麼簡單。 – adeneo

回答

1

不能代替內置的消息框。你所能做的就是使用一個插件(或者編寫你自己的邏輯),它用可以設計風格的HTML元素替換它們的功能。

這將意味着更改您的javascript代碼,其中alert,confirm等被使用。