Lecture 1 on learning JQuery from scratch_jquery
The importance of JQuery should be self-evident to a coder. How many times have I been asked whether I know JQuery when applying for a job? How many times have I vomited blood due to browser incompatibility when writing scripts? How many times have I been asked because of the need? I used a script to create a simple effect but my hands cramped while writing it. After JQuery appeared, many problems were easily solved.
Every time we learn something, we always like to understand its history. Since we are starting from scratch, let’s also learn a little bit about its history.
jQuery was created by American John Resig. It has attracted many javascript experts from all over the world to join its team, including Jörn Zaefferer from Germany, Stefan Petre from Romania, etc.
jQuery is another excellent Javascript framework after prototype. Its purpose is - WRITE LESS, DO MORE, write less code and do more things.
It is a lightweight js library (only 21k after compression), which is beyond the reach of other js libraries. It is compatible with CSS3 and various browsers (IE 6.0, FF 1.5, Safari 2.0, Opera 9.0 ).
jQuery is a fast, concise javaScript library that allows users to more easily process HTML documents and events, achieve animation effects, and easily provide AJAX interactions for websites.
Another big advantage of jQuery is that its documentation is very complete and its various applications are explained in detail. There are also many mature plug-ins to choose from.
jQuery can keep the code and html content of the user's html page separated. That is to say, there is no need to insert a bunch of js in the html to call the command. You only need to define the id.
Let’s start our first DEMO. We will explain based on the DEMO. In the first lecture, we will only give a brief introduction without in-depth explanation and analysis. Netizens who need to provide source code can join the group: 34979719
< ;%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="JQuery_1._Default" %>
As can be seen from the above DEMO1 To use JQuery, you must first reference a JQuery package. The download address of the JQuery package is attached
compressed version: http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.2 .min.js&downloadBtn=Download
Uncompressed version: http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.2. js
The JQuery package version downloaded above is 1.3.2. The latest JQuery package has reached 1.42. If you want to try it out, you can download it yourself. At present, we are mainly talking about the 1.3.2 version of
After introducing the JQuery package, we can start writing our script program. As can be seen from the running effect of the example, the page will pop up in sequence after loading: " "hello world", "hello world again", "hello world again again", the effect is the same. The first and third are traditional JS, and the second is a JQuery program. If you remove the line , you will be prompted after running: $ is not defined.
$ sign is an alias for jQuery "class", so $() constructs a new jQuery object. $() is the selector, and $(document) constructs a JQuery document object. The function ready () is a method of this jQuery object. After the DOM is loaded, the event of this method starts to be executed. When the event is triggered in DEMO, the alert method provided by it is executed. JQuery's methods are enclosed in a pair of parentheses (), followed by a semicolon.
That’s all for today. I hope netizens can forgive me for any shortcomings. I also hope that netizens can actively discuss and make corrections in time. In the next lecture, we will talk about JQuery's selector and how JQuery obtains the control value.

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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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 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? 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? 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

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: <

jQuery is a fast, small, feature-rich JavaScript library widely used in front-end development. Since its release in 2006, jQuery has become one of the tools of choice for many developers, but in practical applications, it also has some advantages and disadvantages. This article will deeply analyze the advantages and disadvantages of jQuery and illustrate it with specific code examples. Advantages: 1. Concise syntax jQuery's syntax design is concise and clear, which can greatly improve the readability and writing efficiency of the code. for example,

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? 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

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
