LoginSignup
5
7

More than 5 years have passed since last update.

jQuery.cookieでcookieを削除する際の注意

Posted at

jquery.cookieを使ってcookieを削除する際にうまくいかなかったのでメモ


var name = "keshitaicookiemei";
$.removeCookie(name);
$.cookie(name, null);
$.cookie(name, {expires: -1, path: '/'});//←これはだめ
$.cookie(name,"",{expires:-1});
$.cookie(name,"",{path:"/",expires:-1});//←パスをドメイン全部にしている場合や、上ではうまく消えない場合
5
7
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
7