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;
}
};
我注意到代码中的到期但我不知道它在程序中到底做了什么? 我只是希望有人只是解释上面的代码,如果可能的话。 感谢。
答案 0 :(得分:1)
Cookie是网站发送的一小段数据,在用户浏览网站时存储在用户的网络浏览器中。
有些参数可以在浏览器中调节cookie的行为
结合PHP等服务器端语言的会话,它们可用于存储用户的状态。用户登录或注销,权限等。
以上代码设置或获取存储在用户浏览器中的cookie的值。
参考: