You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
434 B
15 lines
434 B
5 years ago
|
function delCookie(name) {
|
||
|
var exp = new Date();
|
||
|
exp.setTime(exp.getTime() - 1);
|
||
|
var cval = getCookie(name);
|
||
|
if (cval != null)
|
||
|
document.cookie = name + "=" + cval + ";expires=" + exp.toGMTString();
|
||
|
}
|
||
|
|
||
|
function getCookie(name) {
|
||
|
var arr, reg = new RegExp("(^| )" + name + "=([^;]*)(;|$)");
|
||
|
if ((arr = document.cookie.match(reg)) !== null)
|
||
|
return unescape(arr[2]);
|
||
|
else
|
||
|
return null;
|
||
|
}
|