aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/glossary/cookie
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/glossary/cookie
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/glossary/cookie')
-rw-r--r--files/zh-cn/glossary/cookie/index.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/files/zh-cn/glossary/cookie/index.html b/files/zh-cn/glossary/cookie/index.html
new file mode 100644
index 0000000000..494f911025
--- /dev/null
+++ b/files/zh-cn/glossary/cookie/index.html
@@ -0,0 +1,18 @@
+---
+title: Cookie
+slug: Glossary/Cookie
+translation_of: Glossary/Cookie
+---
+<p>Cookie 就是访问者在访问网站后留下的一个信息片段。</p>
+
+<p>Cookie 用于个性化用户的体验。可能包含用户在访问网站时的参数或输入。用户可以自定义浏览器来接受,拒绝或删除 Cookie。</p>
+
+<p><code>Cookie 可以在服务器级别设置和修改,使用 Set-Cookie</code> <a href="/en-US/docs/Web/HTTP/Cookies">HTTP header</a>, 或者在 JavaScript 中用 <code><a href="/en-US/docs/Web/API/Document/cookie">document.cookie</a></code>.</p>
+
+<h2 id="了解更多">了解更多</h2>
+
+<h3 id="General_Knowledge">General Knowledge</h3>
+
+<ul>
+ <li><a href="https://en.wikipedia.org/wiki/HTTP_cookie">HTTP cookie</a> on Wikipedia</li>
+</ul>