jQuery .cookie与.delay?

时间:2010-10-18 18:51:40

标签: jquery

我正在尝试设置延迟时间的Cookie。

我希望在页面上80分钟后设置cookie。

这是我的代码 -

$(document).ready(function() {
            // Set the cookie after 81 mins so the next visit has the button
            $.cookie('EVGSalesLetter', 'visited').delay(4860000); 
        });

1 个答案:

答案 0 :(得分:6)

.delay()用于动画队列,通常只设置一个使用setTimeout()的计时器,如下所示:

setTimeout(function() { $.cookie('EVGSalesLetter', 'visited'); }, 4860000);

我没有把它放在document.ready中,因为我假设(希望安全地......)你的页面已经满载了81分钟。)