Home > Web Front-end > JS Tutorial > body text

Use of document.cookie in JavaScript

高洛峰
Release: 2016-11-26 13:27:16
Original
1298 people have browsed it

We already know that there is a cookie attribute in the document object. But what are cookies? "Some Web sites store information on your hard drive in small text files called cookies." - MSIE Help. Generally speaking, cookies are created by CGI or similar files, programs, etc. that are more advanced than HTML, but javascript also provides very comprehensive access rights to cookies.

We first need to learn the basic knowledge of Cookies.

Every cookie is like this: =

The restrictions are similar to the naming restrictions of javascript, except that "javascript keywords cannot be used" and more "Only use characters that can be used in URL encoding". The latter is more difficult to understand, but as long as you just use letters and numbers for names, you'll be fine. The requirement for is also "only characters that can be used in URL encoding".

Each cookie has an expiration date. Once the computer clock passes the expiration date, the cookie will be deleted. We cannot delete a Cookie directly, but we can delete it indirectly by setting the expiration date earlier than the current time.

 Each web page, or each site, has its own cookies. These cookies can only be accessed by web pages under this site. Web pages from other sites or unauthorized areas under the same site cannot be accessed. of. Each "group" of cookies has a specified total size (approximately 2KB per "group"). Once the maximum total size is exceeded, the earliest expired cookies will be deleted first to allow new cookies to "settle in".

Now let’s learn to use documents.cookie attribute.

If you use the documents.cookie attribute directly, or use some method, such as assigning a value to a variable, to get the value of documents.cookie, we can know how many Cookies there are in the current document and the name of each Cookie. , and its value. For example, adding "document.write(documents.cookie)" to a document, the result shows:

name=kevin; email=kevin@kevin.com; lastvisited=index.html

This means that the document contains 3 Cookies: name, email and lastvisited, their values ​​are kevin, kevin@kevin.com and index.html respectively. As you can see, the two Cookies are separated by semicolons and spaces, so we can use the cookieString.split('; ') method to get an array of each Cookie (first use var cookieString = documents.cookie) .

The way to set a Cookie is to assign a value to documents.cookie. Unlike assignment in other cases, assigning a value to documents.cookie will not delete the original Cookies, but will only add Cookies or change the original Cookies. The format of the assignment:

documents.cookie = 'cookieName=' + escape('cookievalue') + ';expires=' + expirationDateObj.toGMTString();

Are you feeling dizzy? cookieName represents the name of the cookie, cookievalue represents the value of the cookie, and expirationDateObj represents the date object name that stores the expiration date. If the expiration date does not need to be specified, the second line is not needed. If the expiration date is not specified, the browser defaults to expiration after closing the browser (that is, closing all windows).

First, escape() method: why must it be used? Because the requirement for the cookie value is "only characters that can be used in URL encoding". We know that the "escape()" method encodes the string according to the URL encoding method, then we only need to use an "escape()" method to process the value output to the Cookie, and use "unescape()" to process the value output from the Cookie. The value received is foolproof. And the most common use of these two methods is to deal with Cookies. In fact, setting a Cookie is as simple as "documents.cookie = 'cookieName=cookievalue'", but in order to avoid characters that are not allowed to appear in the URL in the cookievalue, it is better to use escape().

Then the semicolon in front of “expires”: Just notice it. It's the semicolon and nothing else.

Finally, the toGMTString() method: The expiration date of the cookie is set in GMT format. Time in other formats has no effect.

Now let’s do it in practice. Set a cookie with "name=rose" to expire after 3 months.

var expires = new Date();
expires.setTime(expires.getTime() + 3 * 30 * 24 * 60 * 60 * 1000);
/* Three months x one month is treated as 30 days x one day 24 Hour
x One hour 60 minutes This is because we know that rose is a valid URL-encoded string, that is, 'rose' == escape('rose'). Generally speaking, if you don't use escape() when setting a cookie, you don't need to use unescape() when getting a cookie.

 Let’s do it again: write a function to find the value of a specified cookie.

function getCookie(cookieName) {
var cookieString = documents.cookie;
var start = cookieString.indexOf(cookieName + '=');
// The reason for adding the equal sign is to avoid having "
// The same string as cookieName.
if (start == -1) // Not found
return null;
start += cookieName.length + 1;
var end = cookieString.indexOf(';', start);
if (end == - 1) return unescape(cookieString.substring(start));
return unescape(cookieString.substring(start, end));
}

This function uses some methods of the string object, if you don’t remember (you are It’s not that I have no memory.) Please check it out quickly. All if statements in this function do not include else. This is because if the condition is true, the program will run return statements. If return is encountered in the function, the operation will be terminated, so there is no problem without adding else. This function returns the value of the Cookie when it finds the Cookie, otherwise it returns "null".

Now we need to delete the name=rose Cookie we just set.

var expires = new Date();
expires.setTime(expires.getTime() - 1);
documents.cookie = 'name=rose;expires=' + expires.toGMTString();

You can see, You only need to change the expiration date to be a little earlier than the current date (here it is 1 millisecond earlier), and then set the cookie in the same way to delete the cookie.

Attached is a js function written by a foreigner to operate cookies




///Set cookies

function setCookie(NameOfCookie, value, expiredays)

{

//@Parameters: three variables are used to set new Cookie:
//The name of the cookie, the stored cookie value,
// and the time when the cookie expires.
// These lines convert the number of days into a legal date

var ExpireDate = new Date ();

ExpireDate.setTime(ExpireDate.getTime() + (expiredays * 24 * 3600 * 1000));

// The following line is used to store cookies, just simply assign a value to "document.cookie".
// Note that the date is converted to GMT time through the toGMTstring() function.

document.cookie = NameOfCookie + "=" + escape(value) +

((expiredays == null) ? "" : "; expires=" + ExpireDate.toGMTString());

}

// /Get cookie value
function getCookie(NameOfCookie)
{

// First we check whether the cookie exists.
// If it does not exist, the length of document.cookie is 0
if (document.cookie.length > 0)
{

// Then we check whether the cookie name exists in document.cookie
// Because more than one cookie value is stored, even if the length of document.cookie is not 0, there is no guarantee that the cookie with the name we want exists.
//So we need this step to see if there is a cookie we want
//If the variable value of begin is -1, then it means it does not exist
begin = document.cookie.indexOf(NameOfCookie+"=");
if (begin != -1)
{
// Indicates the existence of our cookie.
begin += NameOfCookie.length+1;//The initial position of the cookie value
end = document.cookie.indexOf(";", begin );//End position
if (end == -1) end = document.cookie.length;//No; then end is the end position of the string
return unescape(document.cookie.substring(begin, end)); }
}

return null;

//The cookie does not exist, return null
}


///Delete cookie
function delCookie (NameOfCookie)
{
//This function checks whether the cookie is set, and if it is set, Adjust the expiration time to the past time;
//The rest is left to the operating system to clean up the cookies at the appropriate time



if (getCookie(NameOfCookie)) {www.2cto.com
document.cookie = NameOfCookie + "= " +
"; expires=Thu, 01-Jan-70 00:00:01 GMT";
}
}


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!