如果5分钟没有操作,退出到登录页

    // 如果5分钟没有操作,退出到登录页
    var timer;
    function startTimer(){
        clearTimeout(timer);
        timer=setTimeout(function(){
            // 清空缓存和token
            $cookies.remove("access_token", { path: "/" });
            $cookies.remove("userName", { path: "/" });
            $cookies.remove("userId", { path: "/" });
            $cookies.remove("roleName", { path: "/" });
            $cookies.remove("userCount", { path: "/" });
            window.location.href = "/index.html"
        },5*60*1000);
    }
    document.οnmοusemοve=document.οnmοusedοwn=startTimer

https://www.cnblogs.com/yingzi1028/p/10565287.html

你可能感兴趣的:(html,javascript,java)