JavaScriptでcookieを削除するサンプル
JSコード
function cookieDelete(key){ var dt = new Date(); var cft = key + "=;expires=" + dt.toGMTString(); document.cookie = cft; }
Coding Changes the World
JSコード
function cookieDelete(key){ var dt = new Date(); var cft = key + "=;expires=" + dt.toGMTString(); document.cookie = cft; }