blog icon indicating copy to clipboard operation
blog copied to clipboard

检测浏览器刷新还是退出代码

Open xuya227939 opened this issue 3 years ago • 0 comments

let beginTime = 0;
let differTime = 0;
window.onunload = function () {
    differTime = new Date().getTime() - beginTime;
    if (differTime <= 5) {
        console.log('浏览器关闭');
    } else {
        console.log('浏览器刷新');
    }
};
window.onbeforeunload = function () {
    beginTime = new Date().getTime();
};

xuya227939 avatar Sep 27 '21 07:09 xuya227939