2014-01-05 43 views
0

我使用此代碼出境交通出口業務代碼不起作用

<script type=」text/javascript」 language=」javascript」> 
    function areYouSure() { 
    areYouReallySure = true; 
    location.href=」http://example.com」 
    return 「WAIT! Maybe you’d like to try ShamWow instead?\r\nOrder now and we’ll have Chuck Norris personally deliver it!」; 

} 
window.onbeforeunload = areYouSure; 
</script> 

的代碼根本不會被調用。

這是一個演示http://provendate.com/testpop.php

爲什麼?

+3

你使用」或」,有區別 –

+0

一旦你用''替換了花哨的引號,'' – sachleen

回答

0

如果您想在某人導航離開該頁面顯示確認,所有你需要做的是:

window.onbeforeunload = function() { 
    return "I'm a really annoying message, please stay !"; 
} 

Here是小提琴