码迷,mamicode.com
首页 > 其他好文 > 详细

创建cookie

时间:2018-03-29 13:28:15      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:post   sha   tst   time   bsp   type   exp   pos   func   

//创建cookie
CloudShareCommon.prototype.setCookie = function (name, expireday) {
    var exp = new Date();
    exp.setTime(exp.getTime() + expireday * 60 * 1000); //设置cookie的期限
    document.cookie = name + "=true" + "; expires" + "=" + exp.toGMTString(); //创建cookie
}

 

创建cookie

标签:post   sha   tst   time   bsp   type   exp   pos   func   

原文地址:https://www.cnblogs.com/queende7/p/8669034.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!