javascript操作cookie的文章(設置,刪除cookies)
更新時間:2010年04月01日 14:53:15 作者:
一篇javascript處理cookie的文章,腳本之家之前發(fā)布過很多這樣的文章。
下面這篇是國外的一篇文章。
http://www.dhdzp.com/article/20553.htm
var sel = new Object();
var sel_num = 0;
function getCookieVal(offset) {
var endstr = document.cookie.indexOf(";", offset);
if (endstr == -1) endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie(name) {
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
//alert(document.cookie.length);
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal(j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;
}
return null;
}
function SetCookie(name, value, expires, path, domain, secure) {
document.cookie = name + "=" + escape(value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : "");
return value;
}
function DeleteCookie(name) {
if (GetCookie(name) != null) {
SetCookie(name, "", null, "/", null);
}
}
function cookie_content() {
i = 0;
var content = "";
for (key in sel) {
if (i == 0) {
content += key + "[" + sel[key] + "]";
}
else {
content += "," + key + "[" + sel[key] + "]";
} i++;
}
return content;
}
function inni_data() {
var cookie_sel = new Object();
cookie_str = GetCookie("Member_COOKIE");
if (cookie_str != "" && cookie_str != null) {
cookie_sel = cookie_str.split(',');
for (var k = 0; k < cookie_sel.length; k++) {
i = cookie_sel[k].indexOf("[");
j = cookie_sel[k].indexOf("]");
sel[cookie_sel[k].substring(0, i)] = cookie_sel[k].substring(i + 1, j);
sel_num++;
}
draw();
}
}
function addMember(id, nm) {
if (!sel[id]) {
sel_num++; sel[id] = nm;
}
else
{sel[id] = nm;}
SetCookie("Member_COOKIE", cookie_content(), null, "/", null);
}
function draw() {
out = '';
for (key in sel) {
$("#"+key).val(sel[key] );
}
}
http://www.dhdzp.com/article/20553.htm
復制代碼 代碼如下:
var sel = new Object();
var sel_num = 0;
function getCookieVal(offset) {
var endstr = document.cookie.indexOf(";", offset);
if (endstr == -1) endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie(name) {
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
//alert(document.cookie.length);
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal(j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;
}
return null;
}
function SetCookie(name, value, expires, path, domain, secure) {
document.cookie = name + "=" + escape(value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : "");
return value;
}
function DeleteCookie(name) {
if (GetCookie(name) != null) {
SetCookie(name, "", null, "/", null);
}
}
function cookie_content() {
i = 0;
var content = "";
for (key in sel) {
if (i == 0) {
content += key + "[" + sel[key] + "]";
}
else {
content += "," + key + "[" + sel[key] + "]";
} i++;
}
return content;
}
function inni_data() {
var cookie_sel = new Object();
cookie_str = GetCookie("Member_COOKIE");
if (cookie_str != "" && cookie_str != null) {
cookie_sel = cookie_str.split(',');
for (var k = 0; k < cookie_sel.length; k++) {
i = cookie_sel[k].indexOf("[");
j = cookie_sel[k].indexOf("]");
sel[cookie_sel[k].substring(0, i)] = cookie_sel[k].substring(i + 1, j);
sel_num++;
}
draw();
}
}
function addMember(id, nm) {
if (!sel[id]) {
sel_num++; sel[id] = nm;
}
else
{sel[id] = nm;}
SetCookie("Member_COOKIE", cookie_content(), null, "/", null);
}
function draw() {
out = '';
for (key in sel) {
$("#"+key).val(sel[key] );
}
}
相關文章
JavaScript 阻止超鏈接跳轉(zhuǎn)的操作方法(多種寫法)
很多朋友問小編能否通過JavaScript來阻止超鏈接的跳轉(zhuǎn)呢,今天給大家通過多種寫法來實現(xiàn)這一功能,具體實例代碼跟隨小編一起看看吧2021-06-06
JavaScript訪問本地文件夾的幾種實現(xiàn)方法
由于安全限制無法直接訪問用戶的本地文件或文件夾,本文主要介紹了JavaScript訪問本地文件夾的幾種實現(xiàn)方法,具有一定的參考價值,感興趣的可以了解一下2024-06-06
javascript實現(xiàn)貪吃蛇經(jīng)典游戲
這篇文章主要為大家詳細介紹了javascript實現(xiàn)貪吃蛇經(jīng)典游戲,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2020-04-04
使用bootstrapValidator插件進行動態(tài)添加表單元素并校驗
動態(tài)添加表單元素,并調(diào)用bootstrapValidator的方法為表單添加校驗規(guī)則,調(diào)用addField()方法實現(xiàn)功能。下面通過本文看下具體實現(xiàn)方法吧2016-09-09

