简体   繁体   中英

how to clear sessionStorage across all tabs?

I'm using React Js for my project. Is it possible to clear a value from sessionStorage in all tabs at once through 1 tab?

Some values are stored in sessionStorage and the requirement is to clear those sessionStorage values from all tabs.

sessionStorage doesn't persist in different tabs. Only local storage persists in different tabs, which can be cleared by localStorage.clear().

if you want to clear session storage use sessionStorage.clear().

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM