HTML5 Local storage vs. Session storage

后端 未结 10 2399
甜味超标
甜味超标 2020-11-22 03:16

Apart from being non persistent and scoped only to the current window, are there any benefits (performance, data access, etc) to Session Storage over Local Storage?

10条回答
  •  离开以前
    2020-11-22 04:04

    sessionStorage is the same as localStorage, except that it stores the data for only one session, and it will be removed when the user closes the browser window that created it.

提交回复
热议问题