The jquery framework is written in JavaScript scripting language. jQuery is a fast and concise JavaScript framework; jQuery encapsulates commonly used functional codes (functions) in JavaScript, provides a simple JavaScript design pattern, and optimizes HTML document operations, event processing, animation design, and Ajax interaction. jQuery provides enhancements to basic JavaScript constructs, such as element iteration and array manipulation.
The operating environment of this tutorial: windows7 system, jquery3.6.0 version, Dell G3 computer.
jquery is a framework written based on JavaScript language.
jQuery is a fast and concise JavaScript framework, is another excellent JavaScript code library (or JavaScript framework) after Prototype. The purpose of jQuery's design is "write less, do more", which means writing less code and doing more things.
jQuery encapsulates common JavaScript function codes (functions), provides a simple JavaScript design pattern, and optimizes HTML document operations, event processing, animation design and Ajax interaction.
jQuery syntax is to select HTML elements and perform certain operations on the selected elements.
JavaScript is a web programming language, and jquery is a framework written based on JavaScript language, which is essentially just js. So:
jQuery is a JavaScript library.
jQuery greatly simplifies JavaScript programming. (The code is much lighter than heavy JavaScript)
jQuery makes JavaScript easier to use.
jquery is about using less code and completing more functions beautifully.
jQuery language features:
1. Quickly obtain document elements
jQuery’s selection mechanism is built on the Css selector , which provides the ability to quickly query elements in DOM documents, and greatly enhances the way to obtain page elements in JavaScript.
2. Provide beautiful page dynamic effects
jQuery has a series of built-in animation effects, which can develop very beautiful web pages. Many websites use jQuery’s built-in effects, such as fade-in Dynamic special effects such as fade out and element removal.
3. Create AJAX non-refresh web pages
AJAX is the abbreviation of asynchronous JavaScript and XML. It can develop very sensitive non-refresh web pages, especially when developing server-side web pages, such as PHP websites. , need to communicate with the server back and forth. If AJAX is not used, the web page has to be refreshed every time the data is updated. However, after using AJAX special effects, the page can be partially refreshed to provide dynamic effects.
4. Provide enhancements to the JavaScript language
jQuery provides enhancements to basic JavaScript structures, such as element iteration and array processing.
5. Enhanced event handling
jQuery provides various page events, which can prevent programmers from adding too much event handling code in HTML. Most importantly, its event handling The browser eliminates various browser compatibility issues.
6. Change the content of the web page
jQuery can modify the content of the web page, such as changing the text of the web page, inserting or flipping the web page image. jQuery simplifies the way that JavaScript code needs to be processed.
[Recommended learning: jQuery video tutorial, web front-end video]
The above is the detailed content of What is the jquery framework written in?. For more information, please follow other related articles on the PHP Chinese website!