Very good [JS] Cookie proficient path page 1/2 _ javascript skills

Source: Internet
Author: User
Cookies. Some people like them and some hate them. However, few really know how to use them. Now you can become a member of a few people-a Cookie master who can be proud of himself. If you have a bad memory like an author, you may not be able to remember people's names. When I met someone, I just nodded and asked, "Have you eaten !", And expect greetings to end here
. If you still need to express something, I have to turn to some tricky techniques to help me think about who the other person is. For example, people related to each other, regardless of their relationships.
Far away, as long as you can avoid the embarrassment of not remembering the name of the other Party: "How about mafister, the cute nephew of your neighbor next door ?" In this way, I want to make the other Party feel that I do
I really pay attention to him or her, and even remember these things, even though I forgot my name. However, it is not that I do not pay attention to it, but that my memory is really bad and I need to remember the name
There are too many words. If I can set cookies for everyone, I will not commit this memory problem any more.

In this article, we will learn:

1. What is Cookies?
2. Cookie Composition
3. Manipulate Cookies
4. Cookie monsters

What is Cookies?

You will ask, what is cookies? Cookies are a small amount of data stored by browsers on users' computers. It is associated with a specific WEB page or WEB site, automatically in the WEB browser and
Transfer Between WEB servers.

For example, if you are running a Windows operating system and use Internet Explorer to access the Internet, you will find that there is a subdirectory under your "Windows" directory called
"Temporary Internet Files ". If you have time to look at this directory, you will find some files in it. The file name looks like an email address. For example, on my machine
There is a file like "jim@support.microsoft.com" in this directory. This is a cookie file. Where does this file come from? Guess, it comes from Microsoft's support site
Point. By the way, this is not my email address.

Cookies are a good solution for managing small and unimportant details that do not want to be stored in the central database. (This does not mean that everyone's name is not important .) For example
The ever-increasing number of custom services on the previous website can be customized for each user. If you are designing such a site, how do you manage this information: 1.
Users prefer green menu bar while others prefer red menu bar. It is indeed a tiring question. However, such information can be securely recorded into cookies and stored in users'
Computing machine, and your own database space can leave more meaningful data for a longer period of time.

FYI: Cookies are usually useful for security purposes. I don't want to go too deep on this issue here. I just provide an example to see how to use
Cookies to ensure site security:

1. Use the user name and password to Log On Through SSL.
2. Check the username and password in the database on the server. If the logon succeeds, create a message digest (such as MD5) for the current time tag and save it in the cookie and server count.
Databases. Save the user's logon time in the user records in the server database.
3. When performing each security transaction (any transaction in which the user is logged on), compare the cookie message digest with the digest saved in the server database. If the comparison fails,
The user is directed to the logon interface.
4. If Step 2 passes the check, check whether the time of the current time and logon time sound exceeds the allowed time length. If the user has timed out
Interface.
5. If both steps 3rd and 4th pass, reset the logon time to the current time to allow transactions to occur. Most of the security sites you need to log on to may use
.
Cookie Composition

Cookies were originally designed for CGI programming. However, we can also use Javascript scripts to manipulate cookies. In this article, we will demonstrate how to use Javascript scripts
To manipulate cookies. (If necessary, I may introduce how to use Perl for cookie Management in future articles. However, if you cannot wait, I will teach you the following:
Take a closer look at CGI. pm. In this CGI package, there is a cookie () function that can be used to create a cookie. However, let's first introduce the nature of cookies.

In Javascript scripts, a cookie is actually a string attribute. When you read the cookie value, you get a string containing all the cookies used on the current web page.
Name and value. Each cookie has four attributes besides the name and value attributes. These attributes are: expires expiration time, path, domain,
And secure security.

Expires-expiration time. Specifies the life cycle of the cookie. Specifically, the value is the expiration date. If you want to make the cookie longer than the current browser session time, you must use this
. When the expiration date expires, the browser can delete the cookie file without any impact.

Path-Path. Specifies the web page associated with the cookie. The value can be a directory or a path. If a http://www.zdnet.com/devhead/index.html creates
Cookie. That is to say
Any page in the http://www.zdnet.com/devhead/stories/articles can access the cookiebuilt at http://www.zdnet.com/devhead/index.html.
But what if the http://www.zdnet.com/zdnn/ needs to access the cookesset in http://www.zdnet.com/devhead/index.html? In this case
Set the path attribute of cookies to "/". When specifying a path, all WEB pages with the same path in the URL from the same server can share cookies. Now look at another
For example, if you want the http://www.zdnet.com/devhead/filters/ and http://www.zdnet.com/devhead/stories/shared cookies, you need to set pathas"
/Devhead ".

Domain-Domain. Specify the associated WEB server or domain. The value is a domain name, such as zdnet.com. This is an extension of the path attribute. If we want
Catalog.mycompany.com can access cookies set by shoppingcart.mycompany.com. What should I do? We can set the domain attribute to "mycompany.com"
And set the path attribute to "/". FYI: you cannot set the cookie domain attribute to a value different from the domain of the server on which it is set.

Secure-security. Specify how the cookie value is transmitted between the user and the WEB server over the network. The value of this attribute is either "secure" or empty. By default
Is null, that is, data is transmitted using insecure HTTP connections. If a cookie is marked as secure, it is connected to the WEB server through HTTPS or other security protocols.
Transmit data. However, setting the secure attribute does not mean that others cannot see the cookies saved locally on your machine. In other words, to set the cookie to secure, only the cookie and WEB
The data transmission process between servers is encrypted, but the cookie files stored locally are not encrypted. If you want to encrypt the local cookie, you must encrypt the data yourself.




Cookies

Remember that cookie is a string attribute of the document. To save the cookie, you only need to create a string in the format of name =

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.