Instructions for using JS (jquery) to manipulate cookies

Source: Internet
Author: User

This article is mainly on the use of JS (jquery) Operation Cookie Method for a detailed description of the introduction, the need for friends can come to the reference, I hope to help you

Cookie manipulation is a feature we often use in web development, which we used to do through JavaScript. The following jquery plugin is specifically used for cookies, including adding, purging, and reading cookies. You can download it on the homepage of this plugin: http://jquery.com/when the jquery file and the plugin file are referenced in the page, you can do the following: Set a cookie to set a cookie named blog, Value css9.net: $. Cookies ("blog", "Css9.net"), set a cookie called blog, value Css9.net, and set the expiration Time (expires property) to 7 days: $.cookie ("blog", "Css9.net", { Expires:7}) set a cookie named blog with a value of css9.net, set the expiration Time (expires property) to 7 days, and set the Path property of the cookie to "/admin" $.cookie ("blog", " Css9.net ", {path: '/admin ', expires:7}); Read cookie: Read cookie value with Name blog: alert ($.cookie (" blog "); Delete Cookie: $.cookie (" Exa Mple ", NULL); Download the JS file in a more detailed explanation

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.