Many students like to store data in HTMLElement attributes in projects, such as
<script> <BR>div.getAttribute('data'); // some data <BR></script>> ;
Add custom attribute "data" and value "some data" to the div on the page. Use getAttribute to obtain it in subsequent JS code.
jQuery has provided the data/removeData method since 1.2.3 to store/delete data. 1.6.1 Code snippet
jQuery.extend({
cache: {},
// Please use with caution
uuid: 0,
...
});
adds a static field to jQuery /Methods, including jQuery.cache/jQuery.uuid/jQuery.expando, etc. The following introduces the
jQuery.cache empty object, used for caching. Its structure is more complex.
jQuery.uuid increments a unique number.
jQuery.expando string, generated using Math.random, with non-numeric characters removed. It serves as the property name of an HTMLElement or JS object.
expando: "jQuery" ( jQuery.fn.jquery Math .random() ).replace( /D/g, "" ),
jQuery.noData JS object, disables the data method for the specified HTMLElement. Such as embed, applet.
jQuery.hasData is used to determine whether the HTMLElement or JS object has data. Return true or false. That is, if the jQuery.data method is called to add attributes, it returns true.
<script> <BR>var div = document.getElementsByTagName('div')[0]; <BR>$.hasData(div); // false <BR>$.data(div, 'name','jack '); <BR>$.hasData(div); // true <BR></script>
jQuery.acceptData is used to determine whether the element can accept data, returning true or false . Used in jQuery.data.
jQuery.data This is a method provided to client programmers. It is also a setter/getter.
1, pass one parameter, return all the data attached to the specified element, that is, thisCache jQuery.data(el); // thisCache
2, pass two parameters, return the specified attribute value jQuery.data(el, 'name');
3, pass three parameters, set attributes and attribute values jQuery.data(el, 'name', 'jack');jQuery.data(el, 'uu', {});
4, pass four parameters, the fourth parameter pvt is only provided to the jQuery library itself. That is, pass true in the jQuery._data method. Because jQuery's event module relies heavily on jQuery.data, it was added in this version to avoid accidental rewriting.
jQuery.removeData deletes data.
The above is an overall overview of the jQuery data caching module. The following is a detailed description of the jQuery.data method. jQuery.data provides caching for two types of objects: JS objects and HTMLElement
// Provide cache for JS objects
var myObj = {};
$.data(myObj, 'name', 'jack');
$.data(myObj, 'name'); // jack
// Provide cache for HTMLElement
<script> <BR>var el = document.getElementById('xx' ); <BR>$.data(el, 'name', 'jack'); <BR>$.data(el, 'name'); // jack <BR></script>
There are also differences in the internal implementation.
1. When providing cache for JS objects, the data is saved directly on the JS object. cache is a JS object. At this time, an attribute will be secretly added to the JS object (similar to jQuery16101803968874529044), and the attribute value is also a JS object. For example
var myObj = {};
$ .data(myObj, 'name', 'jack');
console.log(myObj);
The structure of myObj is as follows
myObj = {
jQuery16101803968874529044 : {
name : 'jack'
}
}
The string "jQuery16101803968874529044" is named id inside data (note that it is not the id of the HTMLElement element). It is actually jQuery.expando. As mentioned above, it is randomly generated after jQuery.js is introduced to the page.
2. When caching is provided for HTMLElement, it will not be directly saved on HTMLElement. Instead it is saved on jQuery.cache. The cache is jQuery.cache. At this time, first add attributes to HTMLElement (similar to jQuery16101803968874529044), and the attribute values are numbers (1, 2, 3 increase). That is, only some numbers are saved on the HTMLElement, and the data is not directly inserted. This is because there may be a risk of memory leaks in older versions of IE. And how does HTMLElement connect with jQuery.cache? Or ID. I just mentioned that the attribute value number is the id. For example
<script> <BR>var el = document.getElementById('xx'); <BR>$.data(el, 'name', 'jack'); <BR>console. log(el[jQuery.expando]); // 1 <BR>console.log(jQuery.cache); // {1 : {name:'jack'}} <BR></script>
el is added with the attribute jQuery.expando, the value is id, and this id is incremented from 1. The id is used as the attribute (key) of jQuery.cache. In this way, HTMLElement is connected to jQuery.cache. As shown in the picture
Have you noticed that jQuery.data also has a fourth parameter pvt, which is only used in jQuery._data.
// For internal use only.
_data: function( elem, name, data ) {
return jQuery.data( elem, name, data, true );
},
jQuery._data specifies from the naming that it is Private, client programmers using jQuery should not call this method. jQuery's API documentation doesn't expose it either.
jQuery’s data caching module changes in almost every version from 1.2.3 to 1.6.1. jQuery._data was proposed to prevent client programmers from overwriting/rewriting the default module. For example, the event handler in the jQuery event module is stored using jQuery.data, if the module is rewritten. Then the event module will be paralyzed. Therefore, the pvt parameter and jQuery._data method were specially added.
But if you deliberately want to destroy it, you can still do it. As follows
<script> <BR>$('#xx').click(function(){ <BR>alert('click'); <BR>}); <BR>// statement 1 <BR>$.data($('#xx')[0], 'events', '', true); <BR>// Statement 2 <BR>//$._data($('#xx ')[0], 'events', ''); <BR></script>
Clicking on div[id=xx] will not trigger the click event.
The entire jQuery.data setting (set) data cache process is like this, understand this. The process of getting data is easy to understand. Not repeated.
Finally, I will add the zChain.data/removeData method to zChian.js, because it is a "mini version" and only adds data caching to HTMLElement. Please note.
Related:
http://msdn.microsoft.com/en-us/library/Bb250448
http://bugs.jquery.com/ticket/6807
zChain-0.6.js

C and JavaScript achieve interoperability through WebAssembly. 1) C code is compiled into WebAssembly module and introduced into JavaScript environment to enhance computing power. 2) In game development, C handles physics engines and graphics rendering, and JavaScript is responsible for game logic and user interface.

JavaScript is widely used in websites, mobile applications, desktop applications and server-side programming. 1) In website development, JavaScript operates DOM together with HTML and CSS to achieve dynamic effects and supports frameworks such as jQuery and React. 2) Through ReactNative and Ionic, JavaScript is used to develop cross-platform mobile applications. 3) The Electron framework enables JavaScript to build desktop applications. 4) Node.js allows JavaScript to run on the server side and supports high concurrent requests.

Python is more suitable for data science and automation, while JavaScript is more suitable for front-end and full-stack development. 1. Python performs well in data science and machine learning, using libraries such as NumPy and Pandas for data processing and modeling. 2. Python is concise and efficient in automation and scripting. 3. JavaScript is indispensable in front-end development and is used to build dynamic web pages and single-page applications. 4. JavaScript plays a role in back-end development through Node.js and supports full-stack development.

C and C play a vital role in the JavaScript engine, mainly used to implement interpreters and JIT compilers. 1) C is used to parse JavaScript source code and generate an abstract syntax tree. 2) C is responsible for generating and executing bytecode. 3) C implements the JIT compiler, optimizes and compiles hot-spot code at runtime, and significantly improves the execution efficiency of JavaScript.

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

Understanding how JavaScript engine works internally is important to developers because it helps write more efficient code and understand performance bottlenecks and optimization strategies. 1) The engine's workflow includes three stages: parsing, compiling and execution; 2) During the execution process, the engine will perform dynamic optimization, such as inline cache and hidden classes; 3) Best practices include avoiding global variables, optimizing loops, using const and lets, and avoiding excessive use of closures.

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function