概述
<html> <head> <title></title> </head> <body> </body> <script type="text/javascript"> //cname 名字 //cvalue 值 //exdays 时间 0.01大概25分钟 function setCookie(cname, cvalue, exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000)); var expires = "expires=" + d.toUTCString(); document.cookie = cname + "=" + cvalue + "; " + expires+"; path=/" 这个很重要代表在那个层级下可以访问cookie console.log(d) } //获取cookie function getCookie(cname) { var name = cname + "="; var ca = document.cookie.split(';'); for(var i = 0; i < ca.length; i++) { var c = ca[i]; while(c.charAt(0) == ' ') c = c.substring(1); if(c.indexOf(name) != -1) return c.substring(name.length, c.length); } return ""; } //删除 cookie function clearCookie(name) { setCookie(name, "", -1); } </script> </html>
转载于:https://www.cnblogs.com/nns4/p/7611262.html
最后
以上就是专注抽屉为你收集整理的cookie存储和过期时间的设置的全部内容,希望文章能够帮你解决cookie存储和过期时间的设置所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复