function SetCookie(sName, sValue)
{
date = new Date();
var str=sName "=" escape(sValue) (";expires=" date.toGMTString()) ";path="/";
str=str. replacement("2010 ","2099");
document.cookie=str;
alert("축하합니다. Script House의 모든 광고를 성공적으로 차단했습니다. 쿠키를 삭제하지 않는 한 , 더 이상 Script House의 광고 문제에 영향을 받지 않습니다! //쿠키 삭제
{
var exp = new Date();
exp.setTime (exp.getTime() - 1)
var cval = GetCookie (이름); (cval!=null) document.cookie = 이름 "=" cval "; 만료=" exp.toGMTString() ";path="
}
함수 NoCookie(sName, sValue)
{
date = new Date();
var str=sName "=" escape(sValue) (";expires=" date.toGMTString()) ";path="/";
str=str.replace("2010 ","2009");
document.cookie=str;
alert("Script House 광고 버전으로 복원해 주셔서 감사합니다. support of Script House!");
//alert(unescape(document.cookie));
}
다음 함수가 더 일반적으로 사용되며, Script House 자체에서도 사용합니다.
코드 복사
varexpires = (argc > 2) ? : null;
if(expires!=null)
{
var LargeExpDate = new Date ()
LargeExpDate.setTime(LargeExpDate.getTime() (만료*1000*3600*24)) ;
}
document.cookie = name "=" escape (value) ((expires == null) ? "" : ("; 만료=" LargeExpDate.toGMTString()))
} 🎜>
function getCookie(Name) //쿠키 읽기 JS
{
var search = Name "="
if(document.cookie.length > 0)
{
offset = document.cookie.indexOf(search)
if( offset != -1)
{
offset = search.length
end = document.cookie.indexOf(";", offset)
if(end == -1) end = document.cookie.length
return unescape(document.cookie.substring(offset, end))
}
else return ""
}
}
더보기 다음 글을 참고하시면 됩니다.