What are Cookies?
Web browsers and servers communicate using the HTTP protocol, and HTTP is a stateless protocol. But for a commercial website it needs to maintain session information between different pages. For example, after completing multiple pages, a user registration ends. But how to maintain session information for all web users.
In many cases, using cookies is the most effective way to remember and track information such as preferences, purchases, commissions, and requests for a better visiting experience or website statistics.
How does it work?
The server sends some data to the visitor's browser in the form of a cookie. This browser can accept cookies. If so, it is a text-only record stored on the hard drive for the visitor. Now, when a visitor reaches another page on your site, the browser sends the same cookie to the server for retrieval. Once retrieved, the server knows/remembers what just happened to be stored.
Cookies have plain text data records with 5 variable length fields:
- Expires: The date the cookie will expire. If this is blank, then the cookie will expire when the visitor exits the browser.
- Domain: The domain name of the website.
- Path: Path setting cookie directory or web page. If you want to search from any directory or page, then the cookie is empty.
- Secure: If this field contains the word "secure", then the cookie can only retrieve a secure server. If this field is empty, no limit exists.
- Name=Value: Cookie settings are obtained in the form of key and value pairs.
Cookies were originally designed for use in CGI programming and cookie data are automatically transferred between web browsers and web servers, so CGI scripts on the server can read and write cookies stored on the client value.
JavaScript can also operate using the cookie attribute of the document object. JavaScript can read, create, modify and delete cookies or cookies applicable to the current web page.
Save Cookies:
The simplest way to create a cookie is to assign a string value to the document.cookie object, which looks like this:
Grammar
document.cookie = "key1=value1;key2=value2;expires=date";
Here, expires attribute option. If this attribute is provided with a valid date or time, the cookie will expire at the given date or time, and the cookie's value will then be inaccessible.
Note: Cookie values may not include semicolons, commas, or whitespace. For this reason, it may be necessary to use JavaScript's escape() function to encode the stored value before the cookie. If you do this, you must also use the corresponding unescape() function when reading the cookie's value.
Read Cookies:
Reading cookies is as easy as writing because the value of document.cookieobject is the cookie. So whenever you want to access the cookie, you can use this string.
The string document.cookie will be continued by a semicolon, where name is the name of a cookie and value is a list of name=value pairs separated by its string value.
Set the expiration date of cookies:
It is possible to extend the life of a cookie beyond the current browser session by setting the expiry date and expiration date in the saved cookie. This can be done by setting the date and time of the expires attribute.
Example:
The following example demonstrates how to set a cookie to expire after 1 month:
<html> <head> <script type="text/javascript"> <!-- function WriteCookie() { var now = new Date(); now.setMonth( now.getMonth() + 1 ); cookievalue = escape(document.myform.customer.value) + ";" document.cookie="name=" + cookievalue; document.cookie = "expires=" + now.toUTCString() + ";" alert("Setting Cookies : " + "name=" + cookievalue ); } //--> </script> </head> <body> <form name="formname" action=""> Enter name: <input type="text" name="customer"/> <input type="button" value="Set Cookie" onclick="WriteCookie()"/> </form> </body> </html>
Delete Cookies:
Sometimes if you want to delete a cookie, what will be returned when you try to read the cookie later. To do this, you just need to set the expiry date to be some time in the past.
Example:
The following example demonstrates how to delete a cookie by setting the expiry date one month ago:
<html> <head> <script type="text/javascript"> <!-- function WriteCookie() { var now = new Date(); now.setMonth( now.getMonth() - 1 ); cookievalue = escape(document.myform.customer.value) + ";" document.cookie="name=" + cookievalue; document.cookie = "expires=" + now.toUTCString() + ";" alert("Setting Cookies : " + "name=" + cookievalue ); } //--> </script> </head> <body> <form name="formname" action=""> Enter name: <input type="text" name="customer"/> <input type="button" value="Set Cookie" onclick="WriteCookie()"/> </form> </body> </html>
Note: Without setting the date, you can use the setTime() function to see the new value.

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


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

Dreamweaver CS6
Visual web development tools

Dreamweaver Mac version
Visual web development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

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

Zend Studio 13.0.1
Powerful PHP integrated development environment
