この記事の例では、jQuery を使用して Cookie 値を取得し、Cookie を削除する方法について説明します。参考のために皆さんと共有してください。詳細は次のとおりです:
Cookieにはjqueryで指定されたCookie操作クラスがあります。 ここでは、まずCookie操作クラスを使用する際の問題点を紹介し、その後、正しい使用方法を紹介します。
JQuery を使用して Cookie を操作すると、不正な値が発生します:
Cookie には 4 つの異なる属性があることが判明しました:
名前、コンテンツ、ドメイン、パス
$.cookie('the_cookie'); // 读取 cookie $.cookie('the_cookie', 'the_value'); // 存储 cookie $.cookie('the_cookie', 'the_value', { expires: 7 }); // 存储一个带7天期限的 cookie $.cookie('the_cookie', '', { expires: -1 }); // 删除 cookie
使用:
$.cookie("currentMenuID", menuID);
ドメインとパスが指定されていない場合。
ドメインとパスが異なると、異なる Cookie が生成されます
$.cookie("currentMenuID");
値を取得するときに問題が発生します。
したがって、次を使用します:
$.cookie("currentMenuID", "menuID", { path: "/"});
オーバーライド。同じドメイン内の同じ cookieID が値に対応します。
例を見てみましょう
Cookie のパス設定に注意する必要があります。 path:'/' を設定しない場合、パスはディレクトリに従って自動的に設定されます (例: http://www.xxx.com/)。 user/、パスは「/user」に設定されます)
$.extend({ /** 1. 设置cookie的值,把name变量的值设为value example $.cookie('name', 'value'); 2.新建一个cookie 包括有效期 路径 域名等 example $.cookie('name', 'value', {expires: 7, path: '/', domain: 'jquery.com', secure: true}); 3.新建cookie example $.cookie('name', 'value'); 4.删除一个cookie example $.cookie('name', null); 5.取一个cookie(name)值给myvar var account= $.cookie('name'); **/ cookieHelper: function(name, value, options) { if (typeof value != 'undefined') { // name and value given, set cookie options = options || {}; if (value === null) { value = ''; options.expires = -1; } var expires = ''; if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { var date; if (typeof options.expires == 'number') { date = new Date(); date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); } else { date = options.expires; } expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE } var path = options.path ? '; path=' + options.path : ''; var domain = options.domain ? '; domain=' + options.domain : ''; var secure = options.secure ? '; secure' : ''; document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join(''); } else { // only name given, get cookie var cookieValue = null; if (document.cookie && document.cookie != '') { var cookies = document.cookie.split(';'); for (var i = 0; i < cookies.length; i++) { var cookie = jQuery.trim(cookies[i]); // Does this cookie string begin with the name we want? if (cookie.substring(0, name.length + 1) == (name + '=')) { cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); break; } } } return cookieValue; } } });
さらに jQuery 関連のコンテンツに興味のある読者は、このサイトの特別トピック「JQuery Cookie 操作スキルの概要」、「jQuery テーブル (テーブル) 操作スキルの概要」を参照してください。 🎜>" , "jQuery のドラッグ効果とテクニックのまとめ", "jQuery 拡張テクニックのまとめ", "jQuery の一般的な古典的な特殊効果のまとめ", 「jQuery アニメーションと特殊効果の使い方まとめ」、「jQuery セレクターの使い方まとめ」、「jQuery の共通プラグインと使い方まとめ」
この記事が jQuery プログラミングのすべての人に役立つことを願っています。