--- title: WindowEventHandlers.onstorage slug: Web/API/WindowEventHandlers/onstorage tags: - API - Event Handler - Property - Reference - Web Storage - WindowEventHandlers translation_of: Web/API/WindowEventHandlers/onstorage ---
{{domxref("WindowEventHandlers")}} 믹스인의 onstorage
속성은 storage
이벤트를 처리하는 {{event("Event_handlers", "event handler")}}입니다.
storage
이벤트는 다른 문서에서 저장소를 변경했을 때 발생합니다.
window.onstorage = functionRef;
functionRef
는 함수 이름 혹은 함수 표현식으로, 단일 매개변수로써 {{domxref("StorageEvent")}}를 받습니다.
다음 예제는 다른 문서에서 저장소 키를 바꿀 때마다 메시지를 기록합니다.
window.onstorage = function(e) { console.log('The ' + e.key + ' key has been changed from ' + e.oldValue + ' to ' + e.newValue + '.'); };
Specification | Status | Comment |
---|---|---|
{{SpecName('HTML WHATWG','webappapis.html#handler-window-onstorage','onstorage')}} | {{Spec2('HTML WHATWG')}} |
{{Compat("api.WindowEventHandlers.onstorage")}}