zoukankan      html  css  js  c++  java
  • cookie的处理

    window.gg = {}
    (function () {
    function setCookie(key, value, options) {
    if (!(getCookie(key) == "")) {
    delCookie(key);
    }
    options = options || {};
    if (value === null || value === undefined) {
    options.expires = -1;
    } else {
    if (options.expires == null) {
    options.expires = new Date();
    options.expires.setFullYear(options.expires.getFullYear() + 1);
    }
    }

    if (typeof options.expires === 'number') {
    var days = options.expires, t = options.expires = new Date();
    t.setDate(t.getDate() + days);
    }
    value = String(value);
    document.cookie =
    [
    encodeURIComponent(key), '=', options.raw ? value : encodeURIComponent(value),
    //options.expires ? '; expires=' + options.expires.toUTCString() : '',
    '; expires=' + options.expires.toUTCString(),
    options.path ? '; path=' + options.path : ';path=/',
    options.domain ? '; domain=' + options.domain : '',
    options.secure ? '; secure' : ''
    ].join('');
    }

    function getCookie(name) {
    var arr = document.cookie.match(new RegExp("(^| )" + name + "=([^;]*)(;|$)"));
    if (arr == null && name == "LxLoginRoleId") {
    window.location = "index.html";
    }
    return arr == null ? null : decodeURIComponent(arr[2]);
    }

    function delCookie(name) {
    var exp = new Date();
    exp.setFullYear(exp.getFullYear() - 1);
    var cval = getCookie(name);
    var delCookie = name + "=" + cval + ";expires=" + exp.toUTCString() + "; path=/";
    if (cval != null) document.cookie = delCookie;
    }

    gg.core.cookie = {
    setValue: function (key, value, options) {
    if (arguments.length > 1 && String(value) !== "[object Object]") {
    setCookie(key, value, options);
    return;
    }
    },
    getValue: function (key) {
    return getCookie(key);
    },
    deleteCookid: function (key) {
    delCookie(key);
    return;
    }
    };
    })();
  • 相关阅读:
    LeetCode:数组(三)
    LeetCode:数组(二)
    LeetCode:数组(一)
    python实现栈的基本操作
    python基本内置函数
    Pycharm的常见Debug调试方法(持续更新)
    计算广告系列(一)-基本概念整理
    es与solr对比
    数据库优化
    java线程池
  • 原文地址:https://www.cnblogs.com/tutao1995/p/9777259.html
Copyright © 2011-2022 走看看