HTML DOM 快速導覽 - 文件物件 document 的屬性 cookie

document.cookie 為瀏覽器 (broswer) 用以存取目前所在網址的網站 Cookie 資料。



瀏覽器通常可以替單一網站記錄約 20 筆的 Cookie 資料,每一筆資料都是字串 (string) ,舉例如下
function run() {
    document.cookie = "name=kaiching";
    document.cookie = "date=2011/8/20";
    var c = document.getElementById("show");
    c.innerHTML = document.cookie;
}

/* 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:document007.js
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 */


此例將 "name=kaiching" 與 "date=2011/8/20" 寫入瀏覽器的 Cookie 之中
document.cookie = "name=kaiching";
document.cookie = "date=2011/8/20";


然後再以 id 屬性 (attribute) 為 show 的元素顯示該網站的 Cookie 資料
var c = document.getElementById("show");
c.innerHTML = document.cookie;


我們以下面的 HTML 文件載入
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
<script src="document007.js" type="text/javascript"></script>
</head>
<body>
<input type="button" value="RUN" onclick="run();">
<div id="show"></div>
</body>
</html>

<!-- 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:document007.html
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 -->


瀏覽器開啟,按下 RUN 就會顯示結果



此例的網站為自己的電腦,非具有特定網址的網站。


中英文術語對照
瀏覽器broswer
字串string
屬性attribute


您可以繼續參考
基本概念
文件物件 document


相關目錄
HTML DOM 快速導覽
JavaScript 教材
首頁


參考資料
https://developer.mozilla.org/en/DOM/document.cookie
http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-8747038

沒有留言: