이 문서의 예에서는 jquery.cookie.js의 사용법을 설명합니다. 참고하실 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
쿠키는 당사가 웹사이트를 방문할 때 항상 함께 작동하여 당사의 모든 활동을 기록하며, 이용자의 개인정보를 침해하지 않는 범위의 정보는 저장되므로 이용자가 다시는 반복적인 작업을 하지 않아도 됩니다. , 이는 고객을 크게 촉진하고 웹사이트로의 복귀율을 높입니다.
jquery.cookie.js는 jquery에서 쿠키를 작동하는 매우 간단한 방법을 제공합니다.
$.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 包括有效期 路径 域名等
이 플러그인의 기본 만료는 일 단위로 계산됩니다. 수정 사항은 다음과 같습니다.
if (typeof options.expires === 'number') { //var days = options.expires, t = options.expires = new Date(); //t.setDate(t.getDate() + days); var seconds = options.expires, t = options.expires = new Date(); t.setTime(t.getTime() + seconds); //t.setTime(t.getTime() + days); //date.setTime(date.getTime() + (1 * 24 * 60 * 60 * 1000)); }
다음은 간단한 예입니다. 특정 페이지에 대한 통계를 읽어야 하지만 일정 시간(예: 5분) 내에 동일한 사람이 페이지를 몇 번 새로 고쳐도 집계만 가능합니다. 한 번. . 이는 쿠키의 도움으로 달성할 수 있습니다:
<script language="javascript" src="/js/jquery-1.4.2.min.js"></script> <script type="text/javascript" src="/js/jquery.cookie.js"></script> <script language="javascript" src="/js/jquery.jsonp-2.1.4.min.js"></script> <script type="text/javascript"> // 页面类型,标识一组页面 var pageType = 20110420; // 页面id,标识唯一一个页面 var url = window.location.href; var url_arr = url.split("."); var id = url_arr[url_arr.length - 2]; //var id = 2; //var cookie = $.cookie('the_cookie'+id, true, { expires: 5/24/60/60 }); $(document).ready(function(){ init_count(pageType, id); }) // 初始化数据,同一个cookie一分钟的访问量都算一次 function init_count(pageType, id){ if($.cookie('the_cookie'+id)){ //alert("cookie已存在"); getViewData(pageType, id); } else { // 1分钟过期 var cookie = $.cookie('the_cookie'+id, 'Gonn', { expires: 1000 * 60 * 5 }); //$.cookie('the_cookie'+id, 'Gonn'); //var cookie = $.cookie('the_cookie'+id); //alert(cookie); insert_page(pageType, id); } } // 不插入与更新时统计访问量 function getViewData(pageType, id){ $.ajax({ type: "get", //使用get方法访问后台 dataType: "jsonp", //返回json格式的数据 jsonp:"callback", url: "/manage.php", //要访问的后台地址 data:{"opp":"view", "pageType":pageType, "id":id}, async: false, success: function(data){ //alert(data.total); $('#pc_1').html(data.total); $('#pcm_1').html(data.record); } }) } // 插入或者更新页面统计 function insert_page(pageType, id){ var j = null; $.ajax({ type: "get", //使用get方法访问后台 dataType: "jsonp", //返回json格式的数据 jsonp:"callback", url: "/manage.php", //要访问的后台地址 data:{"opp":"insert", "pageType":pageType, "id":id}, async: false, success: function(data){ //alert(msg.current); //alert(msg.record); j = data; //alert("111"); //alert(j.total); $('#pc_1').html(data.total); $('#pcm_1').html(data.record); } }) } </script>
이 기사가 jQuery 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.