我正在尝试设置每 30 天(或任何其他设定时间段)将启动的 cookie,例如 Stackoverflow.com。
我在这里找到了一个我认为可能会有所帮助的答案。到目前为止,这是我的测试代码: HTML + Initiator
<html>
<head>
<!-- Load JQuery 1.8.3 and the repeatablePopup functions-->
<script src="js/jquery-1.8.3.min.js"></script>
<script src="js/repeatablePopup.js"></script>
<script>
jQuery(document).ready(function() {
var visited = readCookie('visited');
if (!visited || visited !== "true") {
createCookie('visited', "true", 7);
} else {
window.open("http://stackoverflow.com");
}
});
</script>
</head>
<body>
<p>Setting Cookie</p>
</body>
</html>
repeatablePopup.js 上的函数
function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
document.write('Cookie is set');
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
编辑:现在的问题是每次刷新页面时都会植入 cookie,即使 cookie 存在。所以最终弹出窗口不起作用。
感谢您提供的任何帮助,沙哈尔