Basic operations of adding and deleting cookies in JavaScript
This article mainly introduces relevant information on the basic operations of javascript cookies. Here is a detailed introduction to the operation of Cookies including obtaining, creating, setting the validity period, adding and deleting, etc. Friends who need it can refer to it
Basic operations of javascript cookie (add and delete)
1. Add a cookie: response.addCookie(Cookie c);
2. Get the cookie collection: request.getCookies();
3. Create a new cookie:
new Cookie(String name,String value) — Cookie在构造的时候就需要设定好cookie的名字和值
4. Get the name of the cookie: cookie.getName();
5. Get the value of the cookie: cookie.getValue();
6. Set the value of the cookie: cookie.setValue();
Setting and obtaining the cookie validity period
cookie.setMaxAge() and cookie.getMaxAge() methods
– If a Cookie has not set MaxAge, the Cookie is a temporary Cookie; browser When the browser memory is destroyed, the cookie information disappears.
If the cookie is also set to MaxAge, the browser will save the cookie information in the browser's temporary file in the form of a file. folder, you can see the cookie file in the browser's temporary folder, so the cookie information exists before the cookie expires;
Delete a Cookie
Send a cookie with the same name and path (the browser identifies the cookie by name + path);
maxAge is set to 0 (the cookie times out and is deleted immediately after overwriting);
setPath() and getPath() methods
are used to set the path and its sub-paths when accessing the server with the current cookie information;
setDomain() and getDomain() methods
are used to notify the browser to bring the current cookie information when accessing which domain name. (ps: Current browsers do not allow cookie settings Pass the domain information, otherwise it will automatically refuse to receive this cookie.)
The above is the detailed content of Basic operations of adding and deleting cookies in JavaScript. 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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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.

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.

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

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.

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

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

Common problems and solutions for cookie settings, specific code examples are required. With the development of the Internet, cookies, as one of the most common conventional technologies, have been widely used in websites and applications. Cookie, simply put, is a data file stored on the user's computer that can be used to store the user's information on the website, including login name, shopping cart contents, website preferences, etc. Cookies are an essential tool for developers, but at the same time, cookie settings are often encountered
