Can session be used in jquery?
Dec 01, 2020 pm 03:19 PMSession can be used in jquery. The usage method is: 1. Add data, the code is [$.session.set('key', 'value')]; 2. Delete data, the code is [$ .session.remove('key')].
The operating environment of this tutorial: windows7 system, jquery3.2.1 version. This method is suitable for all brands of computers.
Session can be used in jquery. The usage method is:
Add data
$.session.set('key', 'value')
Delete data
$.session.remove('key');
Get data
$.session.get('key');
Clear data
$.session.clear();
The following is the jquery file code: Create a new copy and use it
/** *说明:不可以获取java的session* 语法:添加数据$.session.set('key', 'value') 删除数据$.session.remove('key'); 获取数据$.session.get('key'); 清除数据$.session.clear();*/ (function($){ $.session = { _id: null, _cookieCache: undefined, _init: function(){if (!window.name) {window.name = Math.random();}this._id = window.name;this._initCache(); // See if we've changed protcols var matches = (new RegExp(this._generatePrefix() + "=([^;]+);")).exec(document.cookie);if (matches && document.location.protocol !== matches[1]) {this._clearSession();for (var key in this._cookieCache) {try {window.sessionStorage.setItem(key, this._cookieCache[key]);} catch (e) {};}} document.cookie = this._generatePrefix() + "=" + document.location.protocol + ';path=/;expires=' + (new Date((new Date).getTime() + 120000)).toUTCString(); }, _generatePrefix: function(){return '__session:' + this._id + ':';}, _initCache: function(){var cookies = document.cookie.split(';');this._cookieCache = {};for (var i in cookies) {var kv = cookies[i].split('=');if ((new RegExp(this._generatePrefix() + '.+')).test(kv[0]) && kv[1]) {this._cookieCache[kv[0].split(':', 3)[2]] = kv[1];}}}, _setFallback: function(key, value, onceOnly){var cookie = this._generatePrefix() + key + "=" + value + "; path=/";if (onceOnly) {cookie += "; expires=" + (new Date(Date.now() + 120000)).toUTCString();}document.cookie = cookie;this._cookieCache[key] = value;return this;}, _getFallback: function(key){if (!this._cookieCache) {this._initCache();}return this._cookieCache[key];}, _clearFallback: function(){for (var i in this._cookieCache) {document.cookie = this._generatePrefix() + i + '=; path=/; expires=Thu, 01 Jan 1970 00:00:01 GMT;';}this._cookieCache = {};}, _deleteFallback: function(key){document.cookie = this._generatePrefix() + key + '=; path=/; expires=Thu, 01 Jan 1970 00:00:01 GMT;';delete this._cookieCache[key];}, get: function(key){return window.sessionStorage.getItem(key) || this._getFallback(key);}, set: function(key, value, onceOnly){try {window.sessionStorage.setItem(key, value);} catch (e) {}this._setFallback(key, value, onceOnly || false);return this;},'delete': function(key){return this.remove(key);}, remove: function(key){try {window.sessionStorage.removeItem(key);} catch (e) {};this._deleteFallback(key);return this;}, _clearSession: function(){try {window.sessionStorage.clear();} catch (e) {for (var i in window.sessionStorage) {window.sessionStorage.removeItem(i);}}}, clear: function(){this._clearSession();this._clearFallback();return this;} }; $.session._init(); })(jQuery);
Related free Learning recommendation: javascript(video)
The above is the detailed content of Can session be used in jquery?. For more information, please follow other related articles on the PHP Chinese website!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation of jQuery reference methods: Quick start guide

How to use PUT request method in jQuery?

How to remove the height attribute of an element with jQuery?

jQuery Tips: Quickly modify the text of all a tags on the page

Use jQuery to modify the text content of all a tags

Understand the role and application scenarios of eq in jQuery

How to tell if a jQuery element has a specific attribute?

Summary of commonly used file operation functions in PHP
