javascript - 在js中,瀏覽器關閉還是刷新該怎麼判斷?
typecho
typecho 2017-06-12 09:31:54
0
3
719

現在需要判斷在瀏覽器是關閉還是刷新,執行對應操作...

typecho
typecho

Following the voice in heart.

全部回覆(3)
Peter_Zhu

刷新呼叫:Onunload
關閉呼叫:onbeforeunload
可以在

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>


</body>
    <script>
        window.onbeforeunload = function(){ 
            return "quit?"; 
        }
  </script>
</html>

參考:http://www.jianshu.com/p/e920...

学习ing

load 事件

伊谢尔伦

load() 方法

例:

$("img").load(function(){
  $("p").text("Image loaded");
});

修改後的問題:
這裡有一個和你的問題差不多的,你看:
/q/10...

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板