2012-09-25 73 views
13

這是我的一塊功能與問題它:重定向到警告框其他頁面確認

function deletePost() { 
    var ask = window.confirm("Are you sure you want to delete this post?"); 
    if (ask) { 
     window.alert("This post was successfully deleted."); 

     /* How to redirect to another page on confirm? */ 

    } 
} 

純JavaScript需要。

+0

您搜索的谷歌 「JavaScript重定向」? – Blender

+0

是的,但在那裏顯示的方式不適合我。 @McMaster已經幫我解答了下面的問題。 – Hypn0tizeR

+3

前兩個搜索結果包含完全相同的代碼。 – Blender

回答

20

試試這個:

function deletePost() { 
    var ask = window.confirm("Are you sure you want to delete this post?"); 
    if (ask) { 
     window.alert("This post was successfully deleted."); 

     window.location.href = "window-location.html"; 

    } 
} 
+0

這個工作,我嘗試用這種方式重定向:'window.location =「http:/ /link.com「,這不起作用。謝謝。 – Hypn0tizeR

+0

先生,非常歡迎您。很高興我能幫上忙。 – kingkode

+2

完美,我有一個幾乎相同的問題,這也救了我。爲什麼不會有其他兩個選項工作?http://stackoverflow.com/questions/503093/how-can-i-make-a-redirect-page-in-jquery-javascript – null

相關問題