>웹 프론트엔드 >JS 튜토리얼 >Javascript 쿠키 읽기, 쓰기, 삭제 작업 기능_javascript 기술

Javascript 쿠키 읽기, 쓰기, 삭제 작업 기능_javascript 기술

WBOY
WBOY원래의
2016-05-16 18:33:34893검색
复제대码 代码如下:

function getCookie( 이름 )
{
var start = document.cookie.indexOf( 이름 "=" );
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( 이름, 값, 만료, 경로, 도메인, 보안 ) {
var today = new Date();
today.setTime( today.getTime() );
if (만료) {
만료 = 만료 * 1000 * 60 * 60 * 24;
}
varexpires_date = new Date( today.getTime() (expires) );
document.cookie = name '=' escape( value )
( ( 만료 ) ? ';expires='expires_date.toGMTString() : '' ) //expires.toGMTString()
( ( 경로 ) ? ';path=' 경로 : '' )
( ( 도메인 ) ? ';domain=' 도메인 : '' )
( ( 보안 ) ? ';보안' : '' );
}

// ------------------------- -------------- //
function deleteCookie( 이름, 경로, 도메인 )
{
if ( getCookie( 이름 ) ) document.cookie = 이름 '='
( ( 경로 ) ? ';path=' 경로 : '')
( ( 도메인 ) ? ';domain=' 도메인 : '' )
';expires=1970년 1월 1일 목요일 00:00:01 GMT';
}
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.