//生成cookie
function addCookie(sName, sValue, day) {
    var expireDate = new Date();
    expireDate.setDate(expireDate.getDate() + day);
    //设置失效时间 
    document.cookie = escape(sName) + '=' + escape(sValue) + ';expires=' + expireDate.toGMTString()+';path=/';

}
//读取sid
function getCookie(cookieName) {
    if (document.cookie.length > 0) {
        var cStart = document.cookie.indexOf(cookieName + "=");
        if (cStart != -1) {
            cStart = cStart + cookieName.length + 1;
            var cEnd = document.cookie.indexOf(";", cStart);
            if (cEnd == -1)
                cEnd = document.cookie.length;
            return unescape(document.cookie.substring(cStart, cEnd));
        }
    }
    return "";
}

 

相关文章:

  • 2021-06-17
  • 2021-12-04
  • 2021-07-19
  • 2021-04-24
  • 2022-02-05
猜你喜欢
  • 2021-08-01
  • 2022-01-21
  • 2021-11-19
  • 2022-12-23
  • 2021-12-19
  • 2021-12-19
相关资源
相似解决方案