0

我想使用JQuery Cookie 插件计算用户访问我的网站的次数。设置读取 cookie 非常简单,没有问题,但我不太清楚每次用户返回时如何增加 cookie 的值。

4

1 回答 1

1
function update_visit_count() {
    // Get the old visit count, or 0 if this is his first time
    var visits = $.cookie("visits") || 0;
    // Add 1 to it
    visits++;
    // Save the updated cookie
    $.cookie("visits", visits);
}
于 2013-10-03T23:53:54.013 回答