2009-07-24 29 views

回答

0

你可以嘗試onbeforeunload事件。

1

可能是一個已安裝的插件禁用任何卸載處理程序(見this blog post)。如果是這種情況,你可以刪除插件或切換到onbeforeunload。

0
<script type="text/javascript"> 

     function unloadPage(){ 
      return "dont leave me this way"; 
     } 

     window.onbeforeunload = unloadPage; 

</script>