question? Detailed explanation of JavaScript's JavaScript library
1. JavaScript framework (library)
JavaScript advanced programming (especially complex processing of browser differences), usually very Difficult and time consuming.
In order to cope with these adjustments, many JavaScript (helper) libraries have emerged.
These JavaScript libraries are often called JavaScript frameworks.
We will learn about some popular JavaScript frameworks:
1, jQuery
2, Prototype
3, MooTools
All of these frameworks provide functions for common JavaScript tasks, including animations , DOM operations and Ajax processing.
1.jQuery
jQuery is currently the most popular JavaScript framework.
It uses CSS selectors to access and manipulate HTML elements (DOM objects) on web pages.
jQuery provides both companion UI (user interface) and plug-ins.
Many big companies use jQuery on their websites:
Google, Microsoft, IBM, Netflix
2, Prototype
Prototype is a library that provides for execution Simple API for common web tasks.
API is the abbreviation of Application Programming Interface. It is a library of properties and methods for manipulating the HTML DOM.
Prototype enhances JavaScript by providing classes and inheritance.
Download: Click to open the link
3. MooTools
MooTools is also a framework that provides A simpler API for common JavaScript programming.
MooTools also contains some lightweight effects and animation functions.
4. Other frameworks
The following are some other frameworks not covered above:
YUI - Yahoo! User Interface Framework, a large library covering a large number of functions , from simple JavaScript functions to complete internet widgets.
Ext JS - Customizable widgets for building rich Internet applications.
Dojo - Toolkit for DOM manipulation, events, widgets, and more.
script.aculo.us - Open source JavaScript framework for visual effects and interface behavior.
UIZE - Widgets, AJAX, DOM, templates and more.
The above is the detailed explanation of the JavaScript library of JavaScript