限制超时更改

时间:2014-01-06 18:49:29

标签: javascript

我有这个功能:

function checkBanner() {
    show = false;
    if (document.cookie.indexOf("zy181gg$xxxxx") < 0 ) { 
        show = true;
        click_on(); 
        var expDate = new Date();
        expDate.setTime(expDate.getTime()+5*60*1000);
        document.cookie = "gyz$xxx=zy181gg$xxxxx; expires=" + expDate.toGMTString() + "path=/";
    }
}

+5*60*1000设置什么才能在24小时显示一次?

1 个答案:

答案 0 :(得分:1)

如果你的意思是它在5分钟后到期,你想要改为24小时:

expDate.setTime(expDate.getTime() + 24*60*60*1000);

一天24小时,一小时60分钟,一分钟60秒,一秒钟1000毫秒。