对cookies的操作在当访问一个网站就无时无刻的都伴随着我们,记录着我们的一举一动,并将不危害用户隐私的信息,将以保存,这样用户就不用去从新再次操作重复的步骤,这样大大方便了客户,也增加了客户对网站的回头率。
    jquery.cookie.js 提供了jquery中非常简单的操作cookie的方法。

    • $.cookie(‘the_cookie’); // 获得cookie
    • $.cookie(‘the_cookie’, ‘the_value’); // 设置cookie
    • $.cookie(‘the_cookie’, ‘the_value’, { expires: 7 }); //设置带时间的cookie
    • $.cookie(‘the_cookie’, ‘’, { expires: -1 }); // 删除
    • $.cookie(‘the_cookie’, null); // 删除 cookie
    • $.cookie(‘the_cookie’, ‘the_value’, {expires: 7, path: ‘/‘, domain: ‘jquery.com’, secure: true});//新建一个cookie 包括有效期 路径 域名等

    这个插件默认的过期是按天数计算的,我们可以修改下,按毫秒计算,修改如下:

    1. if (typeof options.expires === 'number') {
    2. //var days = options.expires, t = options.expires = new Date();
    3. //t.setDate(t.getDate() + days);
    4. var seconds = options.expires, t = options.expires = new Date();
    5. t.setTime(t.getTime() + seconds);
    6. //t.setTime(t.getTime() + days);
    7. //date.setTime(date.getTime() + (1 * 24 * 60 * 60 * 1000));
    8. }

    下面举个简单的例子:我们需要对某个页面进行阅读统计,但是呢,在一段时间里(比如5分钟),同一个人无论刷新了这个页面多少次都好,都只能算一次。这个时候可以借助cookie来实现:

    1. <script language="javascript" src="http://www.nowamagic.net/zt/access_count/js/jquery-1.4.2.min.js"></script>
    2. <script type="text/javascript" src="http://www.nowamagic.net/zt/access_count/js/jquery.cookie.js"></script>
    3. <script language="javascript" src="http://www.nowamagic.net/zt/access_count/js/jquery.jsonp-2.1.4.min.js"></script>
    4. <script type="text/javascript">
    5. // 页面类型,标识一组页面
    6. var pageType = 20110420;
    7. // 页面id,标识唯一一个页面
    8. var url = window.location.href;
    9. var url_arr = url.split(".");
    10. var id = url_arr[url_arr.length - 2];
    11. //var id = 2;
    12. //var cookie = $.cookie('the_cookie'+id, true, { expires: 5/24/60/60 });
    13. $(document).ready(function(){
    14. init_count(pageType, id);
    15. })
    16. // 初始化数据,同一个cookie一分钟的访问量都算一次
    17. function init_count(pageType, id){
    18. if($.cookie('the_cookie'+id)){
    19. //alert("cookie已存在");
    20. getViewData(pageType, id);
    21. }
    22. else
    23. {
    24. // 1分钟过期
    25. var cookie = $.cookie('the_cookie'+id, 'Gonn', { expires: 1000 * 60 * 5 });
    26. //$.cookie('the_cookie'+id, 'Gonn');
    27. //var cookie = $.cookie('the_cookie'+id);
    28. //alert(cookie);
    29. insert_page(pageType, id);
    30. }
    31. }
    32. // 不插入与更新时统计访问量
    33. function getViewData(pageType, id){
    34. $.ajax({
    35. type: "get", //使用get方法访问后台
    36. dataType: "jsonp", //返回json格式的数据
    37. jsonp:"callback",
    38. url: "http://www.nowamagic.net/zt/access_count/manage.php", //要访问的后台地址
    39. data:{"opp":"view", "pageType":pageType, "id":id},
    40. async: false,
    41. success: function(data){
    42. //alert(data.total);
    43. $('#pc_1').html(data.total);
    44. $('#pcm_1').html(data.record);
    45. }
    46. })
    47. }
    48. // 插入或者更新页面统计
    49. function insert_page(pageType, id){
    50. var j = null;
    51. $.ajax({
    52. type: "get", //使用get方法访问后台
    53. dataType: "jsonp", //返回json格式的数据
    54. jsonp:"callback",
    55. url: "http://www.nowamagic.net/zt/access_count/manage.php", //要访问的后台地址
    56. data:{"opp":"insert", "pageType":pageType, "id":id},
    57. async: false,
    58. success: function(data){
    59. //alert(msg.current);
    60. //alert(msg.record);
    61. j = data;
    62. //alert("111");
    63. //alert(j.total);
    64. $('#pc_1').html(data.total);
    65. $('#pcm_1').html(data.record);
    66. }
    67. })
    68. }
    69. </script>