首页 > 代码库 > Local Storage过期时间
Local Storage过期时间
代码
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>timeout</title>
<link rel="stylesheet" href="">
</head>
<body>
<script type="text/javascript" charset="utf-8" >
function set(key,v){
var curTime = new Date().getTime();
localStorage.setItem(key,JSON.stringify({data:v,time:curTime}));
}
function get(key,exp){
var data = http://www.mamicode.com/localStorage.getItem(key);
var dataObj = JSON.parse(data);
if (new Date().getTime() - dataObj.time > exp) {
console.log(‘expires‘);
}else{
console.log(‘data = http://www.mamicode.com/‘+dataObj.data);
}
}
</script>
</body>
</html>
调用
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1894113
Local Storage过期时间