get_cookie 함수에 unescape 추가
This commit is contained in:
@ -187,7 +187,7 @@ function get_cookie(name)
|
|||||||
if(end < start)
|
if(end < start)
|
||||||
end = document.cookie.length;
|
end = document.cookie.length;
|
||||||
|
|
||||||
return document.cookie.substring(start, end);
|
return unescape(document.cookie.substring(start, end));
|
||||||
}
|
}
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user