浏览器是否将 localStorage 视为 cookie

Is localStorage considered a cookie by the browser

我正在用 Javascript 制作一个 HTML 小页面。它不需要服务器端,但我需要存储此人所做的事情,所以我正在使用 localStorage。(清单)

如今,浏览器可以选择不存储 cookie,网站会在用户是否使用 cookie 时发出警告。

所以我的问题是:

1:我需要警告用户数据正在存储,但只是在客户端?

2:浏览器认为localStorage和sessionSotrage是一种cookie?我的意思是,当用户 select 总是删除 cookie 或将其视为一种威胁时,不要保存数据。

I need to warn the user that data is being stored, but just in the client side?

这取决于您关注的具体立法。例如,在英国,The Privacy and Electronic Communications (EC Directive) Regulations 2003 的措辞表示:

, a person shall not use an electronic communications network to store information, or to gain access to information stored, in the terminal equipment of a subscriber or user unless the requirements of paragraph (2) are met.

虽然它通常被称为 "The Cookie Law",但它绝对不仅仅适用于 cookie。


Browsers considers localStorage and sessionSotrage a kind of a cookie?

没有

I mean, do not save the data when the user select to always erase the cookies

擦除它们时,Chrome 将本地存储与 cookie 捆绑在一起。对所有浏览器允许用户确定何时删除 cookie 和本地存储的所有情况进行全面调查有点超出 SO 问题的典型范围。