= document.cookie.indexOf( name "=" );
var len = 開始名.長さ 1;
if ( ( !start ) && ( name != document.cookie.substring( 0, name.length ) ) ) { return null; } if ( start == -1 ) は null を返します。 var end = document.cookie.indexOf( ';', len ); if ( end == -1 ) end = document.cookie.length;
return unescape( document.cookie.substring( len, end ) );
}
// -------------------------------------- -------------- //
function setCookie( name, value, Expires, path, domain, secure ) {
var today = new Date();
today.setTime(today.getTime() );
if (期限切れ) {
期限切れ = 期限切れ * 1000 * 60 * 60 * 24;
}
varexpires_date = new Date(today.getTime() (expires) );
document.cookie = name '='scape( value )
( ( 期限切れ ) ? ';expires='expires_date.toGMTString() : '' ) //expires.toGMTString()
( ( path ) ? ';path=' パス : '' )
( ( ドメイン ) ? ';ドメイン=' ドメイン : '' )
( ( セキュア ) ? ';セキュア' : '' );
}
// -------------------------------------- -------------- //
function deleteCookie( name, path, domain )
{
if ( getCookie( name ) ) document.cookie = name '='
( ( パス ) ? ';path=' パス : '')
( ( ドメイン ) ? ';domain=' ドメイン : '' )
';expires=木、1970 年 1 月 1 日00:00:01 GMT';
}