jQuery.localStorage() - jQuery SDK API
2463 단어 localStorage
jQuery.localStorage()
From jQuery SDK API
Jump to:
navigation ,
search
Categories:
Data
Contents:
jQuery.localStorage( key )Returns: Object
Description: Get a value from the local storage.
Plugin: jQuery.storage
jQuery.localStorage( key )version added: 1.0 key A key of a stored value.
The
jQuery.localStorage()
method uses the native localStorage, if the localStorage object not available, the storage will be handled with cookies as fall back method. Examples
Get a value from the local storage.Javascript:
$.localStorage( 'foo', {data:'bar'} );
$.localStorage( 'foo' );
Results: {data:'bar'}
jQuery.localStorage( key, value )
Description: Set a value to the local storage.
Plugin: jQuery.storage
jQuery.localStorage( key, value )version added: 1.0 key A key for value to store.value A value to store.
The
jQuery.localStorage()
method uses the native localStorage, if the localStorage object not available, the storage will be handled with cookies as fall back method. Examples
Set a value to the local storage.Javascript:
$.localStorage( 'foo', {data:'bar'} );
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
localStorage에서 반영구 저장하는 방법웹 브라우저 기능의 localStrage에 대한 것입니다. 먼저 localStrange를 무엇인지 살펴 보겠습니다. 보기는 chrome 검증 도구 → 응용 프로그램 → localStrage → 파일에서 볼 수 있습니...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.