1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
function setCookie(name,value,iTime){ var oDate = new Date(); oDate.setDate(oDate.getDate()+iTime); document.cookie = name+'='+value+';expires='+oDate.toGMTString(); }
function getCookie(name){ var arr = document.cookie.split("; "); for(var i=0; i<arr.length; i++){ if(arr[i].split("=")[0] == name){ return arr[i].split("=")[1]; } } return ''; }
function removeCookie(name){ setCookie(name,1,-1); }
|