当前位置:文秘家园>> 文秘工作>> 实务性工作>> 电脑网络

电脑网络

js实现十分钟内在页面无任何操作,页面跳转至登陆页

以稿换稿】  作者:爱喝酸奶的吃货   发布:2016年12月14日   阅读: 次 【   

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

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"

},10*60*1000);

}

document.onmousemove=document.onmousedown=startTimer



出处:http://www.cnblogs.com/yingzi1028/


【来源:作者原创】

 

相关文章

用户评论

(以下评论仅代表网友意见,与本站立场无关)

网友评论共 0