


Detailed explanation of JavaScript cookie and simple example application (picture and text tutorial)
This article mainly introduces the relevant information about the detailed explanation of JavaScript cookies and simple example applications. Here is a detailed explanation of the introduction, basic properties and simple applications of js cookies. Friends in need can refer to it
JavaScript cookie detailed explanation
1. Basic introduction to cookies
Cookie is the object of document. Cookies enable JavaScript code to store data persistently on the user's hard drive and to obtain data stored in this way. Cookies can also be used for client-side scripting.
Cookie data can be automatically transferred between Web browsers and Web servers.
In the browser, you can check whether the browser's cookie function is activated through the navigator.cookieEnabled attribute.
2. Basic attributes of cookie
Each cookie has four optional attributes
1.expires
Specifies the lifetime of the cookie. Set the expires attribute to an expiration time in the future to make the cookie invalid after expiration.
Now replace it with the max-age attribute, which sets the cookie's lifetime in seconds. Once the max-age lifetime is exceeded, the cookie will be automatically deleted from the cookie file by the browser
2.path
Specifies the cookie Web pages that are related together. By default, a cookie is associated with the web page that creates it, as well as web pages in the same directory as this web page and web pages in subdirectories of this directory.
This mainly sets the visibility of cookies to web pages. Add the path to www.a.com/list, then both www.a.com/list/a.html and www.a.com/list/b.html can access the cookie, but www.a.com/comtain This cookie cannot be accessed. But if the path is set to www.a.com/, then both www.a.com/list and www.a.com/contain can access the cookie.
3.domain
By default, only pages from the same web server can access cookies, and domain can be set. For example, if the cookie path is set to / and the cookie is set to .example.com, then all web pages located at catalog.example.com and orders.example.com, as well as web pages located on other servers under the .example.com domain name, can be accessed. This cookie
Note: You cannot set the domain of a cookie to a domain other than the domain where the server is located
4.source
source is a Boolean value, true is transmitted by insecure HTTP (default); false is only transmitted when the browser and server are connected through HTTPS or other secure protocols.
3. Application of cookies
A cookie is a string, composed of a name=value structure. Example of cookie:
version=1.0;max-age=3600
Note that commas or spaces cannot be included between each string, so in When writing a cookie, you need to use encodeURIComponent to remove the relevant symbols in the variable. When reading, use decodeURIComponent
To create a cookie that can last for one year:
document.cookie = “version=” + document.lastModified + “;max-age=” + (60*60*24*365);
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
NodeJS can do anything: counting 10 surprising NodeJS open source projects
JS The pointing of this and the functions of call and apply (picture and text tutorial)
What are the methods of rounding decimals in js? (Picture and text tutorial)
The above is the detailed content of Detailed explanation of JavaScript cookie and simple example application (picture and text tutorial). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Cookies are usually stored in the cookie folder of the browser. Cookie files in the browser are usually stored in binary or SQLite format. If you open the cookie file directly, you may see some garbled or unreadable content, so it is best to use Use the cookie management interface provided by your browser to view and manage cookies.

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

Cookies on your computer are stored in specific locations on your browser, depending on the browser and operating system used: 1. Google Chrome, stored in C:\Users\YourUsername\AppData\Local\Google\Chrome\User Data\Default \Cookies etc.

Cookies on the mobile phone are stored in the browser application of the mobile device: 1. On iOS devices, Cookies are stored in Settings -> Safari -> Advanced -> Website Data of the Safari browser; 2. On Android devices, Cookies Stored in Settings -> Site settings -> Cookies of Chrome browser, etc.

With the popularity of the Internet, we use browsers to surf the Internet have become a way of life. In the daily use of browsers, we often encounter situations where we need to enter account passwords, such as online shopping, social networking, emails, etc. This information needs to be recorded by the browser so that it does not need to be entered again the next time you visit. This is when cookies come in handy. What are cookies? Cookie refers to a small data file sent by the server to the user's browser and stored locally. It contains user behavior of some websites.

With the rapid development of Internet finance, stock investment has become the choice of more and more people. In stock trading, candle charts are a commonly used technical analysis method. It can show the changing trend of stock prices and help investors make more accurate decisions. This article will introduce the development skills of PHP and JS, lead readers to understand how to draw stock candle charts, and provide specific code examples. 1. Understanding Stock Candle Charts Before introducing how to draw stock candle charts, we first need to understand what a candle chart is. Candlestick charts were developed by the Japanese

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

The relationship between js and vue: 1. JS as the cornerstone of Web development; 2. The rise of Vue.js as a front-end framework; 3. The complementary relationship between JS and Vue; 4. The practical application of JS and Vue.
