-2

几天前,我向朋友询问了我网站的会话以及如何使其正常工作,他在这里给了我这段代码...

var $ = jQuery.noConflict();
$(document).ready(function () {
    /*$("a").each(function() {
    $(this).attr("hideFocus", "true");
    });*/
    jQuery.cookie = function (name, value, options) {
        if (typeof value != 'undefined') {
            options = options || {};
            if (value === null) {
                value = '';
                options.expires = -1;
            }
            var expires = '';
            if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
                var date;
                if (typeof options.expires == 'number') {
                    date = new Date();
                    date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
                } else {
                    date = options.expires;
                }
                expires = '; expires=' + date.toUTCString();
            }
            var path = options.path ? '; path=' + (options.path) : '';
            var domain = options.domain ? '; domain=' + (options.domain) : '';
            var secure = options.secure ? '; secure' : '';
            document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
        } else {
            var cookieValue = null;
            if (document.cookie && document.cookie != '') {
                var cookies = document.cookie.split(';');
                for (var i = 0; i < cookies.length; i++) {
                    var cookie = jQuery.trim(cookies[i]);
                    if (cookie.substring(0, name.length + 1) == (name + '=')) {
                        cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                        break;
                    }
                }
            }
            return cookieValue;
        }
    };

我注意到代码中的过期,但我不知道它在程序中到底在做什么?如果可能的话,我只希望有人简单地解释上面的代码。谢谢。

4

1 回答 1

1

Cookie 是在用户浏览网站时从网站发送并存储在用户网络浏览器中的一小段数据。

有一些参数可以调节 cookie 在浏览器中的行为

  1. 饼干的名字
  2. 饼干的价值
  3. cookie 的到期时间(使用格林威治标准时间)
  4. cookie 适合的路径
  5. cookie 适用的域
  6. 需要安全连接才能使用 cookie。

结合服务器端语言(如 PHP)的会话,它们可用于存储用户的状态。如用户登录或退出、权限等。

上述代码设置或获取存储在用户浏览器中的 cookie 的值。

参考 :

  1. http://en.wikipedia.org/wiki/HTTP_cookie
  2. http://en.wikipedia.org/wiki/Session_(computer_science)
于 2013-07-28T12:13:17.233 回答