Leetcode icon indicating copy to clipboard operation
Leetcode copied to clipboard

37. 什么是 Cookie

Open webVueBlog opened this issue 2 years ago • 0 comments

Cookie 是存储在您的计算机上供您的浏览器访问的一段数据。Cookie 被保存为键/值对。例如,您可以创建一个名为 username 的 cookie,如下所示,

document.cookie = "username=John";

webVueBlog avatar Jun 09 '22 01:06 webVueBlog