JS Read Cookie

Source: Internet
Author: User
(New pick not verified)
Returns the value of Document.cookie as a name/value pair object//assuming that the value of the cookie is stored using the function GetCookie () {VAR () encoded with the encodeURIComponent () functions cookies = {}; Initialize the last object to return var all = Document.cookie; Gets all the cookie values in an uppercase string if (all = = = "") { //If the cookie attribute value is an empty string return cookie; Returns an empty object } var list = All.split (";") Separation of Fame/value pairs for (var i = 0; i < list.length; i++) { //traversal per cookie var cookie = list[i]; var p = cookie.indexof ("="); Find the first "=" sign var name = cookie.substring (0,p); Get cookie attribute name var value = cookie.substring (p+1); Gets the value of the cookie corresponding to decodeuricomponent (value); Decodes its value cookies[name] = value; Store a name/value pair in an object } return cookies;

JS Read Cookie

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.