jQuery を使用した Cookie の設定と設定解除
jQuery を使用して Cookie を操作する場合、推奨されるアプローチは、jQuery Cookie プラグインを使用しなくなりました。代わりに、https://github.com/js-cookie/js-cookie.
Cookie の設定
js-cookie で Cookie を設定するには:Cookies.set('name', 'value');
Cookies.set('test', 1);
Cookie の設定解除
js-cookie で Cookie を削除するには:Cookies.remove('name');
Cookies.remove('test');
カスタム オプションの設定
有効期限やドメインなど、Cookie のカスタム オプションを設定するには、オブジェクトを 3 番目の引数として渡します:Cookies.set('test', 1, { expires: 10, // Expires in 10 days path: '/', // The path attribute of the cookie domain: 'jquery.com', // The domain attribute of the cookie secure: true // The secure attribute of the cookie });
リーディングクッキー値
Cookie の値を取得するには:var cookieValue = Cookies.get('name');
以上がjs-cookie を使用して Cookie を設定、設定解除、および管理するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。