我想计算用户访问我网站的次数,使用JQuery Cookie plugin.设置读取cookie非常简单且没有问题,但我无法弄清楚如何增加值每次用户返回时都会使用cookie。
答案 0 :(得分: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);
}