博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cookie的使用
阅读量:6574 次
发布时间:2019-06-24

本文共 1517 字,大约阅读时间需要 5 分钟。

1 function Cookie() {}; 2     Cookie.prototype = { 3         constructor: Cookie, 4         _path: "/", 5         expire: new Date(), 6         setPath: function(path) { 7             this._path = !path ? this._path : path; 8         }, 9         getPath: function() {10             return this._path;11         },12         set: function(name, value, day) {13             if (this.get(name)) this.del(name);14             day = day ? day : 0;15             this.expire.setTime(this.expire.getTime() + day * 24 * 3600 * 1000);16             document.cookie = name + "=" + escape(value) + (day != 0 ? ";expires=" + this.expire.toGMTString() : "") + ";path=" + this.getPath();17         },18         get: function(name) {19             var arr = document.cookie.match(new RegExp("(^| )" + name + "=([^;]*)(;|$)"));20             if (arr != null) {21                 return unescape(arr[2]);22             }23         },24         del: function(name) {25             if (this.get(name)) {26                 document.cookie = name + "=" + "; expires=Thu, 01-Jan-70 00:00:01 GMT;path=" + this.getPath();27             }28         },29         delAll: function() {30             var arr = document.cookie.match(/[^ =;]+(?=\=)/g);31             if (arr) {32                 for (var i = arr.length; i--;) {33                     this.del(arr[i]);34                 }35             }36         }37     };38     var cookie = new Cookie();39     cookie.set('flag', 'audit');

 

转载于:https://www.cnblogs.com/sunmyboke/p/7373541.html

你可能感兴趣的文章
多文件上传示例源码(默认支持各种类型,包括图片)
查看>>
命令行基本操作学习笔记(一)
查看>>
「试着读读 Vue 源代码」工程目录及本地运行(断点调试)
查看>>
A Visual Git Reference
查看>>
Tomcat 关于表单提交数据量过大导致数据丢失的问题
查看>>
金融数据库
查看>>
翻了100个程序员的朋友圈, 发现个个都是套路王
查看>>
取消从上一界面push过来后,左上角的back按钮
查看>>
为什么 ++[[]][+[]]+[+[]] = 10?
查看>>
ContentProvider
查看>>
Redis 持久化存储
查看>>
Android 自定义GridView网格布局
查看>>
基于 jQuery & CSS3 实现智能提示输入框光标位置
查看>>
我的友情链接
查看>>
ThreadLocal分析
查看>>
mysql优化:连接数
查看>>
如何优化js代码(1)——字符串的拼接
查看>>
PHP 时间操作 / 跳转问题
查看>>
Windows 2012 R2 FSMO角色相关小记录
查看>>
(小蚂蚁站长吧)网站优化做好这八步你就是seo第一
查看>>