Table of Contents
There are three basic ways to use jQuery:
Home Web Front-end Front-end Q&A Is jquery a library?

Is jquery a library?

Nov 03, 2022 pm 06:03 PM
javascript jquery

jquery is a library. jquery is an excellent JavaScript code library. It is a class library developed to simplify JS development or DOM and other operations; it encapsulates commonly used functional codes (functions) of JS, provides a simple JS design pattern, and optimizes HTML. Document operation, event processing, animation design, Ajax interaction, etc.

Is jquery a library?

The operating environment of this tutorial: windows7 system, jquery3.6.1 version, Dell G3 computer.

jQuery is a fast and concise JavaScript framework. It is another excellent JavaScript code library (framework) after Prototype. It was released by John Resig in January 2006. The purpose of jQuery's design is "write less, do more", which means writing less code and doing more things. It encapsulates common JavaScript function codes, provides a simple JavaScript design pattern, and optimizes HTML document operations, event processing, animation design and Ajax interaction.

jquery is a class library encapsulated in JavaScript. It refers to an encapsulated JavaScript function library, a lightweight JavaScript library that "writes less and does more".

jQuery encapsulates common JavaScript function codes, provides a simple JavaScript design pattern, and optimizes HTML document operations, event processing, animation design and Ajax interaction.

The purpose of jQuery design is "write Less, Do More", which means writing less code and doing more things.

The core features of jQuery can be summarized as follows: It has a unique chain syntax and a short and clear multi-functional interface; it has an efficient and flexible CSS selector, and can extend the CSS selector; it has convenient plug-in extensions Mechanism and rich plug-ins. jQuery is compatible with various mainstream browsers, such as IE 6.0, FF 1.5, Safari 2.0, Opera 9.0, etc.

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.

The reason why JQuery is so excellent is that it integrates many excellent features, mainly including the following features:

  • ·Utilization CSS selectors provide fast element search behavior.

  • ·Provides an abstraction layer to standardize various common tasks and can solve compatibility issues of various browsers.

  • ·Simplify complex code and provide serial programming mode, which greatly simplifies the operation of the code.

There are three basic ways to use jQuery:

1. Execute after loading the page:

Normally when we use preloading we have to bind the method to onload():

<script type="text/javascript">
	document.onload = function () {
            // 这个事件在页面加载完成之后加载的
        }
</script>
Copy after login

But in jQuery we only need to use $() to load the method

    <script type="text/javascript">
        $.ready(function () {

        });
        $(function () {
            //这两个都可以
            console.log("页面加载");
        });
        //在$()中的函数可以自动加载onload函数
    </script>
Copy after login

2. Through the tag selector string, return the jQuery wrapper line of the tag object

In the DOM object we use:

    <script type="text/javascript">
        var div = document.getElementsByTagName("div")[0];
    </script>
Copy after login

to select a tag.

But in jQuery:

    <script type="text/javascript">
        var div = $("div");
    </script>
Copy after login

p here is an array

3. The third method converts DOM objects into jQuery objects

We can convert the DOM object into a jQuery object:

    <script type="text/javascript">
        var div1 = document.getElementsByTagName("div")[0];
        var jqy = $(div1);
    </script>
Copy after login

Here we have the method of the DOM object in jqy.

Total code:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>jQuery</title>
    <style>
    <!--选择器 -->
        div{
            /*重定义标签选择器*/
            background: #000;
        }
    </style>
</head>
<body>
    <div>Hello!</div>
    <script src="js/jquery-3.4.1.slim.min.js"/>
    <script type="text/javascript">
        document.onload = function () {
            // 这个事件在页面加载完成之后加载的
        }
        $.ready(function () {

        });
        $(function () {
            //这两个都可以
            console.log("页面加载");
        });//可以自动加载onload函数
        /*
        * 2.通过标签选择器字符串,返回标签对象的的jQuery包装对线
        * */
        //在DOM对象中,我们使用
        // var div = document.getElementsByTagName("div")[0];
        //选择的是div的集合
        var div = $("div");
        div.css("","");//两个值,前面的是名称,后面是值
        /*
        * 3.第三种方法把DOM对象转换成jQuery对象
        * */
        var div1 = document.getElementsByTagName("div")[0];
        var jqy = $(div1);
    </script>
</body>
</html>
Copy after login

[Recommended learning: jQuery video tutorial, web front-end video]

The above is the detailed content of Is jquery a library?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Detailed explanation of jQuery reference methods: Quick start guide Detailed explanation of jQuery reference methods: Quick start guide Feb 27, 2024 pm 06:45 PM

Detailed explanation of jQuery reference method: Quick start guide jQuery is a popular JavaScript library that is widely used in website development. It simplifies JavaScript programming and provides developers with rich functions and features. This article will introduce jQuery's reference method in detail and provide specific code examples to help readers get started quickly. Introducing jQuery First, we need to introduce the jQuery library into the HTML file. It can be introduced through a CDN link or downloaded

How to remove the height attribute of an element with jQuery? How to remove the height attribute of an element with jQuery? Feb 28, 2024 am 08:39 AM

How to remove the height attribute of an element with jQuery? In front-end development, we often encounter the need to manipulate the height attributes of elements. Sometimes, we may need to dynamically change the height of an element, and sometimes we need to remove the height attribute of an element. This article will introduce how to use jQuery to remove the height attribute of an element and provide specific code examples. Before using jQuery to operate the height attribute, we first need to understand the height attribute in CSS. The height attribute is used to set the height of an element

How to use PUT request method in jQuery? How to use PUT request method in jQuery? Feb 28, 2024 pm 03:12 PM

How to use PUT request method in jQuery? In jQuery, the method of sending a PUT request is similar to sending other types of requests, but you need to pay attention to some details and parameter settings. PUT requests are typically used to update resources, such as updating data in a database or updating files on the server. The following is a specific code example using the PUT request method in jQuery. First, make sure you include the jQuery library file, then you can send a PUT request via: $.ajax({u

jQuery Tips: Quickly modify the text of all a tags on the page jQuery Tips: Quickly modify the text of all a tags on the page Feb 28, 2024 pm 09:06 PM

Title: jQuery Tips: Quickly modify the text of all a tags on the page In web development, we often need to modify and operate elements on the page. When using jQuery, sometimes you need to modify the text content of all a tags in the page at once, which can save time and energy. The following will introduce how to use jQuery to quickly modify the text of all a tags on the page, and give specific code examples. First, we need to introduce the jQuery library file and ensure that the following code is introduced into the page: &lt

Use jQuery to modify the text content of all a tags Use jQuery to modify the text content of all a tags Feb 28, 2024 pm 05:42 PM

Title: Use jQuery to modify the text content of all a tags. jQuery is a popular JavaScript library that is widely used to handle DOM operations. In web development, we often encounter the need to modify the text content of the link tag (a tag) on ​​the page. This article will explain how to use jQuery to achieve this goal, and provide specific code examples. First, we need to introduce the jQuery library into the page. Add the following code in the HTML file:

How to tell if a jQuery element has a specific attribute? How to tell if a jQuery element has a specific attribute? Feb 29, 2024 am 09:03 AM

How to tell if a jQuery element has a specific attribute? When using jQuery to operate DOM elements, you often encounter situations where you need to determine whether an element has a specific attribute. In this case, we can easily implement this function with the help of the methods provided by jQuery. The following will introduce two commonly used methods to determine whether a jQuery element has specific attributes, and attach specific code examples. Method 1: Use the attr() method and typeof operator // to determine whether the element has a specific attribute

Understand the role and application scenarios of eq in jQuery Understand the role and application scenarios of eq in jQuery Feb 28, 2024 pm 01:15 PM

jQuery is a popular JavaScript library that is widely used to handle DOM manipulation and event handling in web pages. In jQuery, the eq() method is used to select elements at a specified index position. The specific usage and application scenarios are as follows. In jQuery, the eq() method selects the element at a specified index position. Index positions start counting from 0, i.e. the index of the first element is 0, the index of the second element is 1, and so on. The syntax of the eq() method is as follows: $("s

Summary of commonly used file operation functions in PHP Summary of commonly used file operation functions in PHP Apr 03, 2024 pm 02:52 PM

目录1:basename()2:copy()3:dirname()4:disk_free_space()5:disk_total_space()6:file_exists()7:file_get_contents()8:file_put_contents()9:filesize()10:filetype()11:glob()12:is_dir()13:is_writable()14:mkdir()15:move_uploaded_file()16:parse_ini_file()17:

See all articles