0) { // if there are any cookies
offset = window.document.cookie.indexOf(findcookie);
if (offset != -1) { // cookie exists 存在
offset += findcookie.length; // set index of beginning of value
end = window.document.cookie.indexOf(";",offset) // set index of end of cookie value
if (end == -1)
end = window.document.cookie.length;
return unescape(window.document.cookie.substring(offset,end));
}
}
return null;
}
//提示过期弹框
if({$remindflag} == "1"){
setInterval(function TanChuang() {
var c = getCookie("cookievalue");
if (c != null) {
return;
}
cookieGO("getcookie");
G.alert({
"title":"过期提示","pclass":"Box","text":"您的错题本服务将于"+"{$userinfo.member_end}"+"过期
为了不影响您的正常使用请续费","btnText":"购买续费","alert":function(){ this._remove(); window.location.href = "/manage/pay/readyopenvip.PHP"; } }); },2000); }
为了不影响您的正常使用请续费","btnText":"购买续费","alert":function(){ this._remove(); window.location.href = "/manage/pay/readyopenvip.PHP"; } }); },2000); }
以上所述是小编给大家介绍的利用cookies设置每隔24小时弹出框。编程之家 jb51.cc 收集整理的教程希望能对你有所帮助,如果觉得编程之家不错,可分享给好友!感谢支持。
原文链接:https://www.f2er.com/js/39837.html