Implementation steps of using JS to operate HTTP Cookies

php中世界最好的语言
Release: 2017-12-02 11:00:02
Original
2427 people have browsed it

We know thatcookiehas a validity period. The default validity period of a cookie is from the time the cookie is generated until the browser is closed. We can set the validity period of the cookie to specify its expiration date. Users can also Disabling cookies can also delete cookies manually.

A cookie is a small piece of information, astringstored on the computer hard drive as a key/value pair. The cookie storage capacity is approximately 4kb. Different browser manufacturers have different limits on cookie size. The restrictions are slightly different; the main essence of cookies is to "identify" and do something through identification; cookies cannot obtain any other data from your hard drive, transmit computer viruses, or obtain your email address. Cookies have a validity period. The default validity period of a cookie is from when the cookie is generated to when the browser is closed. You can also specify the expiration date by setting the validity period of the cookie. Users can also disable cookies or manually delete cookies.

Cookie is a string and a text string in a specific format

格式:cookieName=cookieValue;expires=expiresDate;path=URLpath;domain=siteDomain//cookie名称,失效日期,储存URL,储存域值;
Copy after login

How to create a cookie
We generally encapsulate cookie settings into a function:

Copy code The code is as follows:

function addCookie(sName,sValue,day) { var expireDate = new Date(); expireDate.setDate(expireDate.getDate()+day);; //设置失效时间 document.cookie = escape(sName) + '=' + escape(sValue) +';expires=' + expireDate.toGMTString();6 //escape()汉字转成unicode编码,toGMTString() 把日期对象转成字符串 }
Copy after login

Read cookie
After adding cookie, how do we get it? It is very simple:

Copy code code As follows:

function getCookies() { var showAllCookie = ''; if(!document.cookie == ''){ var arrCookie = document.cookie.split('; '); //用spilt('; ')切割所有cookie保存在数组arrCookie中 var arrLength = arrCookie.length; for(var i=0; i' 9 } return showAllCookie; } }
Copy after login

Cookies have a validity period and can be automatically deleted, or they can be deleted immediately by setting their expiration date.

It’s very simple, continue:

Copy code code As follows:

function removeCookie() { if(document.cookie != '' && confirm('你想清理所有cookie吗?')) { var arrCookie = document.cookie.split('; '); var arrLength = arrCookie.length; var expireDate = new Date(); expireDate.setDate(expireDate.getDate()-1); for(var i=0; i
        
Copy after login

We already know how to create, obtain, and delete cookies, and now it’s time to use cookies

Let’s use cookies to make a simple timer:

Copy the code code as follows:

var cookieCount = {}; cookieCount.count = function () { var count = parseInt(this.getCount('myCount')); count++; document.cookie = 'myCount=' + count + ''; alert('第'+count+'访问'); } cookieCount.setCount= function () { //首先得创建一个名为myCount的cookie var expireDate = new Date(); expireDate.setDate(expireDate.getDate()+1); document.cookie = 'myCount=' + '0' +';expires=' + expireDate.toGMTString(); } cookieCount.getCount = function (countName) { //获取名为计数cookie,为其加1 var arrCookie = document.cookie.split('; '); var arrLength = arrCookie.length; var ini = true; for(var i=0; i
        
Copy after login

Cookie path

The cookie path was mentioned at the beginning of this article. Set the cookie path: path=URL;

If in The cookie created by the subdirectory of the domain name cannot be accessed by the domain name and other sibling directories or superior directories. The advantage of setting the path is that it can be accessed by the domain name and subcategory directories of the domain name, as follows:

document.cookie='cookieName=cookieValue;expires=expireDate;path=/'。
Copy after login

Cookie domain

Set domain: domain=siteDomain

This is mainly used to share a cookie in the same domain, such as "www.taobao.com" and "ued.taobao.com" both share a domain name "taobao.com". If we want the cookies under "www.taobao.com" to be accessed by "ued.taobao.com", then we need to set the path attribute to "/", and set the cookie

domain-->document.cookie='cookieName=cookieValue;expires=expireDate;path=/;domain=taobao.com'。
Copy after login


With the continuous development of the web project, HTML5 provides two attributes window.sessionStorage and window.localStorage, and carries setItem, getItem, removeItem, clear and other methods, making the method of storing data locally easier and more convenient


I believe you have read these You have mastered the case method. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Related reading:

An example tutorial of margin-top in web page production

The difference between the types of box models in CSS

CSS3 content attribute implementation steps

The above is the detailed content of Implementation steps of using JS to operate HTTP Cookies. For more information, please follow other related articles on the PHP Chinese website!

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
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!