html cookies教程,JavaScript

JavaScript Cookies

Cookies let you store user information in web pages.

What are Cookies?

Cookies are data, stored in small text files, on your computer.

When a web server has sent a web page to a browser, the connection is

shut down, and the server forgets everything about the user.

Cookies were invented to solve the problem "how to remember information about

the user":

When a user visits a web page, his name can be stored in a cookie.

Next time the user visits the page, the cookie "remembers" his name.

Cookies are saved in name-value pairs like:

username=John Doe

When a browser request a web page from a server, cookies belonging to the page is added to the request. This way the server

gets the necessary data to "remember" information about users.

Create a Cookie with JavaScript

JavaScript can create, read, and delete cookies with the document.cookie

property.

With JavaScript, a cookie can be created like this:

document.cookie="username=John Doe";

You can also add an expiry date (in UTC time).

By default, the cookie is deleted when the browser is closed:

document.cookie="username=John Doe; expires=Thu, 18 Dec 2013 12:00:00 UTC";

With a path parameter, you can tell the browser what path the cookie belongs to.

By default, the cookie belongs to the current page.

document.cookie="username=John Doe; expires=Thu, 18 Dec 2013 12:00:00 UTC; path=/";

Read a Cookie with JavaScript

With JavaScript, cookies can be read like this:

var x = document.cookie;

4623c7736fd0f05fcedad8caed9f8376.png

document.cookie will return all cookies in one string much like: cookie1=value; cookie2=value; cookie3=value;

Change a Cookie with JavaScript

With JavaScript, you can change a cookie the same way as you create it:

document.cookie="username=John Smith; expires=Thu, 18 Dec 2013 12:00:00 UTC; path=/";

The old cookie is overwritten.

Delete a Cookie with JavaScript

Deleting a cookie is very simple. Just set the expires parameter to a passed date:

document.cookie = "username=; expires=Thu, 01

Jan 1970 00:00:00 UTC";

Note that you don't have to specify a cookie value when you delete a cookie.

The Cookie String

The document.cookie property looks like a normal text string. But it is not.

Even if you write a whole cookie string to document.cookie, when you read it out again, you can only see the

name-value pair of it.

If you set a new cookie, older cookies are not overwritten.

The new cookie is added to document.cookie, so if you read document.cookie

again you will get something like:

cookie1=value; cookie2=value;

Display All Cookies

Create Cookie 1

Create Cookie 2

Delete Cookie 1

Delete Cookie 2

If you want to find the value of one specified cookie, you must write a JavaScript

function that searches for the cookie value in the cookie string.

JavaScript Cookie Example

In the example to follow, we will create a cookie that stores the name of a visitor.

The first time a visitor arrives to the web page, he will be asked to fill in his name. The name is then stored in a cookie.

The next time the visitor arrives at the same page, he will get a welcome message.

For the example we will create 3 JavaScript functions:

A function to set a cookie value

A function to get a cookie value

A function to check a cookie value

A Function to Set a Cookie

First, we create a function that stores the name of the visitor in a cookie variable:

Example

function setCookie(cname, cvalue, exdays) {

var d = new Date();

d.setTime(d.getTime() + (exdays*24*60*60*1000));

var

expires = "expires="+d.toUTCString();

document.cookie =

cname + "=" + cvalue + "; " + expires;

}

Example explained:

The parameters of the function above are the name of the cookie (cname), the value of the cookie

(cvalue), and the number of days until the cookie should expire (exdays).

The function sets a cookie by adding together the cookiename, the cookie

value, and the expires string.

A Function to Get a Cookie

Then, we create a function that returns the value of a specified cookie:

Example

function getCookie(cname) {

var name = cname + "=";

var ca = document.cookie.split(';');

for(var i=0; i

var c = ca[i];

while (c.charAt(0)=='

') c = c.substring(1);

if (c.indexOf(name) == 0) return c.substring(name.length,c.length);

}

return "";

}

Function explained:

Take the cookiename as parameter (cname).

Create a variable (name) with the text to search for (cname + "=").

Split document.cookie on semicolons into an array called ca (ca = document.cookie.split(';')).

Loop through the ca array (i=0;i

c=ca[i]).

If the cookie is found (c.indexOf(name) == 0), return the value of the cookie

(c.substring(name.length,c.length).

If the cookie is not found, return "".

A Function to Check a Cookie

Last, we create the function that checks if a cookie is set.

If the cookie is set it will display a greeting.

If the cookie is not set, it will display a prompt box, asking for the name of the user,

and stores the username cookie for 365 days, by calling the setCookie function:

Example

function checkCookie() {

var

username=getCookie("username");

if (username!="") {

alert("Welcome again " + username);

}else{

username = prompt("Please enter your name:", "");

if (username != ""

&& username != null) {

setCookie("username", username, 365);

}

}

}

All Together Now

Example

function setCookie(cname, cvalue, exdays) {

var d = new Date();

d.setTime(d.getTime() + (exdays*24*60*60*1000));

var expires = "expires="+d.toUTCString();

document.cookie = cname + "=" + cvalue +

"; " + expires;

}

function getCookie(cname) {

var name = cname + "=";

var ca

= document.cookie.split(';');

for(var i=0; i

{

var c = ca[i];

while (c.charAt(0)=='

') c = c.substring(1);

if (c.indexOf(name)

== 0) return c.substring(name.length, c.length);

}

return "";

}

function

checkCookie() {

var user = getCookie("username");

if (user != "")

{

alert("Welcome again " + user);

} else {

user = prompt("Please enter your name:", "");

if (user != "" &&

user != null) {

setCookie("username", user, 365);

}

}

}

Try it yourself »

The example above runs the checkCookie() function when the page loads.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值