我正在运营一个我需要成人警告弹出窗口的网站,以允许访问者退出或进入该网站。
我和这个插件一起运行一个wordpress网站:EMC2 POPUP DISCLAIMER几乎完美无缺,但唯一的问题是它会弹出每个单独的初始页面加载。
我需要插件只在第一个初始页面加载时弹出,然后一旦访问者点击输入按钮,弹出窗口将不再出现,直到cookie寿命到期。
我找到了javascript cookie代码:
(function($) {
$.cookie = function(key, value, options) {
// key and at least value given, set cookie...
if (arguments.length > 1 && (!/Object/.test(Object.prototype.toString.call(value)) || value === null || value === undefined)) {
options = $.extend({}, options);
if (value === null || value === undefined) {
options.expires = -1;
}
if (typeof options.expires === 'number') {
var days = options.expires, t = options.expires = new Date();
t.setDate(t.getDate() + days);
}
value = String(value);
return (document.cookie = [
encodeURIComponent(key), '=', options.raw ? value : encodeURIComponent(value),
options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
options.path ? '; path=' + options.path : '',
options.domain ? '; domain=' + options.domain : '',
options.secure ? '; secure' : ''
].join(''));
}
// key and possibly options given, get cookie...
options = value || {};
var decode = options.raw ? function(s) { return s; } : decodeURIComponent;
var pairs = document.cookie.split('; ');
for (var i = 0, pair; pair = pairs[i] && pairs[i].split('='); i++) {
if (decode(pair[0]) === key) return decode(pair[1] || ''); // IE saves cookies with empty string as "c; ", e.g. without "=" as opposed to EOMB, thus pair[1] may be undefined
}
return null;
};
})(jQuery);
任何人都可以解释每个页面加载时cookie设置是如何出现的以及如何修改它以便弹出窗口仅在第一次初始页面加载时出现?
提前致谢