jQuery manipulates cookies

jQuery manipulates cookies

Copy code
The code is as follows:
jQuery.cookie = function(name, value, options) { if (typeof value != 'undefined') { // name and value given, set cookie options = options || {}; if (value === null) { value = ''; options.expires = -1; } var expires = ''; if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { var date; if (typeof options.expires == 'number') { date = new Date(); date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); } else { date = options.expires; } expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE } var path = options.path ? '; path=' + options.path : ''; var domain = options.domain ? '; domain=' + options.domain : ''; var secure = options.secure ? '; secure' : ''; document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join(''); } else { // only name given, get cookie var cookieValue = null; if (document.cookie && document.cookie != '') { var cookies = document.cookie.split(';'); for (var i = 0; i < cookies.length; i++) { var cookie = jQuery.trim(cookies[i]); // Does this cookie string begin with the name we want? if (cookie.substring(0, name.length + 1) == (name + '=')) { cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); break; } } } return cookieValue; } }; function getcookie(name) { var cookie_start = document.cookie.indexOf(name); var cookie_end = document.cookie.indexOf(";", cookie_start); return cookie_start == -1 ? '' : unescape(document.cookie.substring(cookie_start + name.length + 1, (cookie_end > cookie_start ? cookie_end : document.cookie.length))); } function setcookie(cookieName, cookieValue, seconds, path, domain, secure) { var expires = new Date(); expires.setTime(expires.getTime() + seconds); document.cookie = escape(cookieName) + '=' + escape(cookieValue) + (expires ? '; expires=' + expires.toGMTString() : '') + (path ? '; path=' + path : '/') + (domain ? '; domain=' + domain : '') + (secure ? '; secure' : ''); }
Directions: Provides convenient methods to operate cookies:
Copy code
The code is as follows:
$.cookie('the_cookie'); // Get the cookie $.cookie('the_cookie', 'the_value'); // Set the cookie $.cookie('the_cookie', 'the_value', { expires: 7 }); //Set a cookie with a time limit of 7 days$.cookie('the_cookie', '', { expires: -1 }); //Delete$.cookie('the_cookie', null); //Delete cookie Set the cookie name-value pair, validity period, path, domain, and security $.cookie('name', 'value', {expires: 7, path: '/', domain: 'jquery.com', secure: true});

<<:  Introduction to TypeScript basic types

>>:  Using HTML to implement a voting website cheating scheme that restricts IP

Recommend

MySQL permission control detailed explanation

Table of contents mysql permission control Permis...

The background color or image inside the div container grows as it grows

Copy code The code is as follows: height:auto !im...

js to achieve the effect of dragging the slider

This article shares the specific code of how to d...

Nginx local directory mapping implementation code example

Sometimes you need to access some static resource...

JavaScript to achieve product magnifying glass effect

This article shares the specific code of JavaScri...

A brief discussion on VUE uni-app custom components

1. Parent components can pass data to child compo...

Common scenarios and avoidance methods for index failure in MySQL

Preface I have read many similar articles before,...

A possible bug when MySQL executes the sum function on the window function

When using MySql's window function to collect...

Detailed steps for deploying Tomcat server based on IDEA

Table of contents Introduction Step 1 Step 2: Cre...

HTML form tag tutorial (3): input tag

HTML form tag tutorial, this section mainly expla...

How to migrate mysql storage location to a new disk

1. Prepare a new disk and format it with the same...

How to mount a disk in Linux

When using a virtual machine, you may find that t...

IE6 web page creation reference IE6 default style

This is not actually an official document of IE. I...

Use iframe to submit form without refreshing the page

So we introduce an embedding framework to solve th...

Detailed explanation of routes configuration of Vue-Router

Table of contents introduce Object attributes in ...