How to Use js (jquery) to operate cookies _ jquery

Source: Internet
Author: User
Tags set cookie
This article describes how to use js (jquery) to operate on cookies in detail. If you need it, refer to it, we hope to help you with Cookie operations, which we often use in Web development. In the past, we used javascript to implement Cookie operations. The following jquery plug-in is specially used for cookie operations.

Including adding, clearing, and reading cookies ......
You can download this plug-in to its home page: http://jquery.com/
After the jquery file and the plug-in file are referenced on the page, perform the following operations:

Set cookie
Set a cookie named blog with the value of css9.net:
$. Cookie ("blog", "css9.net"); set a cookie named blog with a value of css9.net, and set the expiration time (expires attribute) to 7 days:
$. Cookie ("blog", "css9.net", {expires: 7}); set a cookie named blog with a value of css9.net, and set the expiration time (expires attribute) to 7 days, same

Set the path attribute of the cookie to "/admin"
$. Cookie ("blog", "css9.net", {path: '/admin', expires: 7}); read Cookie:
Read the cookie value named blog:
Alert ($. cookie ("blog"); Delete cookie:
$. Cookie ("example", null );
The downloaded js file is described in more detail.

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.