最佳代碼來了解餅乾在JavaScript
我的代碼只是保存爲HTML文件,然後打開瀏覽器進入你willeasily瞭解cookie的概念
<!DOCTYPE html>
<html>
<head>
<script>
function getCookie(c_name)
{
var c_value = document.cookie;
var c_start = c_value.indexOf(" " + c_name + "=");
if (c_start == -1)
{
c_start = c_value.indexOf(c_name + "=");
}
if (c_start == -1)
{
c_value = null;
}
else
{
c_start = c_value.indexOf("=", c_start) + 1;
var c_end = c_value.indexOf(";", c_start);
if (c_end == -1)
{
c_end = c_value.length;
}
c_value = unescape(c_value.substring(c_start,c_end));
}
return c_value;
}
function setCookie(c_name,value,exdays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;
}
function checkCookie()
{
var username=getCookie("username");
if (username!=null && username!="")
{
alert("Welcome again " + username);
}
else
{
username=prompt("Please enter your name:","");
if (username!=null && username!="")
{
setCookie("username",username,365);
}
}
}
</script>
</head>
<body onload="checkCookie()">
</body>
您可以發佈我們的例子嗎? – Zakaria 2011-03-30 07:45:02
請做一些工作,然後發佈代碼,如果造成問題。當你說自動,當它發生?有很多事情可以使用這個。首先,您需要知道如何設置和刪除Cookie。閱讀一些例子。在這裏檢查https://developer.mozilla.org/en/DOM/document.cookie – ace 2011-03-30 10:33:54
首先確保任何網站/應用程序設置的任何cookie都可以被用戶從他的瀏覽器中刪除..沒有任何人可以限制這一點。 – Vijay 2011-03-31 06:21:54