我经营一个博客(在blogger / blogspot中)。我需要在访问者计算机上放置Cookie的帮助。我也需要帮助将信息放置在该特定Cookie上。更确切地说,我想做什么。当访问者单击外部链接(api.viglink)时,将放置一个cookie,其中包含一些信息。如何将自己的cookie放入所需的信息中?请描述您的解决方案。不只是代码
function setcookie(name, value, exp) {
var today = new Date();
var expires = new Date();
var ndays = 1;
var path = '/';
var domain = 'yourdomain.blogger.com';
var secure = false;
var val = escape(value) || "";
exp = (exp == -1) ? true : false;
if (exp) {
expires.setDate(today.getDate() - 1)
} else {
if (ndays == null || ndays == 0) ndays = 1;
expires.setTime(today.getTime() + 3600000 * 24 * ndays)
};
document.cookie = name + "=" + val + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : "")
}
复制自LINK
document.cookie = "name=value;" + "expires=Sat, 16 May 2009 18:40:22 GMT";[1]
这也是设置Cookie的方法。希望我能回答您的问题。
史蒂夫[1] http://www.thonky.com/javascript-and-css-guide/set-cookie/