Home Web Front-end JS Tutorial JavaScript introductory tutorial (11) js event processing_basic knowledge

JavaScript introductory tutorial (11) js event processing_basic knowledge

May 16, 2016 pm 06:56 PM
javascript js event handling Getting Started Tutorial

Overview of Event Processing
Event processing is a very important part of object-based programming. Without event processing, the program will become dead and lack flexibility. The process of event handling can be expressed like this: an event occurs - the event handler is started - the event handler reacts. Among them, in order for the event handler to be started, the object must first be told what handler to start if something happens, otherwise the process cannot continue. The event handler can be any JavaScript statement, but we usually use a specific custom function to handle things.
There are three ways to specify event handlers:
Method 1 Specify directly in HTML tags. This method is the most commonly used. The method is:
Copy the code The code is as follows:



Let's look at an example:
Copy code The code is as follows:



This definition of tag can cause a dialog box to pop up when the document is read, saying "Web page reading" Done, please enjoy it slowly"; "Goodbye" pops up when the user exits the document (or closes the window, or goes to another page).
Method 2: Write JavaScript for specific events of specific objects. This method is rarely used, but it is still useful in some situations. The method is:
Copy the code The code is as follows:



Copy code The code is as follows:



Method 3 is explained in JavaScript. Method:
. = ;
The thing to note with this method is that the "event handler" is really code instead of a string. If the event handler is a custom function, do not add "()" if there is no need to use parameters.
function ignoreError() {
return true;
}
window.onerror = ignoreError; // "()" is not used
This example defines the ignoreError() function as a window object The handler for the onerror event. Its effect is to ignore any errors under the window object ("no permission" errors caused by referencing a location object that does not allow access cannot be ignored).
Event details
onblur event occurs when the window loses focus. Applies to: window object
onchange event occurs after the content of the text input area is changed and then the focus is moved from the text input area. Capturing this event is mainly used to detect the validity of input in real time, or to change the document content immediately. Applies to: Password object; Select object; Text object; Textarea object
onclick event occurs when the object is clicked. Clicking refers to the complete process of hovering the mouse on an object, pressing the mouse button, and releasing the mouse button without moving the mouse. A normal button object (Button) usually has an onclick event handler, because this kind of object cannot get any information from the user at all, and it is useless without an onclick event handler. Adding an onclick event handler to the button can simulate "another submit button" by changing one or several attributes of the form such as action, target, encoding, method, etc. in the event handler, and then calling the submit() method of the form. . Returning false in the Link object's onclick event handler prevents the browser from opening the connection. That is, if there is a connection like this: http://www.a.com" onclick="return false">Go!, then regardless of the user No matter how you click, you will not go to the www.a.com website unless the user prohibits the browser from running JavaScript. Applies to: Button object; Checkbox object; Image object; Link object; Radio object; Reset object; Submit object
onerror event occurs when an error occurs. Its event handler is usually called an "Error Handler" and is used to handle errors. As mentioned above, to ignore all errors, use:
Copy code The code is as follows:

function ignoreError() {
return true;
}
window.onerror = ignoreError;

Applies to: window object
The onfocus event occurs when the window gets focus. Applies to: window object
onload event occurs when all documents are downloaded. All downloads have been completed, which means that not only the HTML files, but also all included images, plug-ins, controls, applets, etc. have been downloaded. This event is a window event, but when specifying the event handler in HTML, we write it in the tag. Applies to: window object
onmousedown event occurs when the user places the mouse on the object and presses the mouse button. See onmouseup event. Applies to: Button object; Link object
onmouseout event occurs when the mouse leaves the object. See onmouseover event. Applies to: Link object
onmouseover event occurs when the mouse enters the object range. This event and the onmouseout event, coupled with the pre-reading of the image, can achieve the effect of the image changing when the mouse moves over the image connection. Sometimes we see that when pointing to a connection, the address is not displayed on the status bar, but other information is displayed. It seems that these information can be changed at any time. They are made like this:

Applies to: Link object
The onmouseup event occurs when the user places the mouse on the object and the mouse button is pressed, and then releases the mouse button. If the mouse button is pressed while the mouse is not on the object where the mouse was released, this event will not occur. Applies to: Button object; Link object
onreset event occurs when the "Reset" button of the form is clicked (pressed and released). You can prevent the form from resetting by returning false in the event handler. Applies to: Form object
onresize event occurs when the window is resized. Applies to: window object
onsubmit event occurs when the "Submit" button of the form is clicked (pressed and released). You can use this event to verify the validity of the form. Form submission can be prevented by returning false in the event handler. Applies to: Form object
onunload event occurs when the user exits the document (or closes the window, or goes to another page). Like onload, if you want to write it in HTML, write it in the tag. Some Web Masters use this method to pop up a "survey form" to "force" visitors to fill in; some pop up advertising windows to instigate visitors to click on the link. I think this "onunload="open..."" method is very bad. Sometimes it even causes a lack of resources because too many windows pop up. If you have anything to say to visitors, you should say it on the web page, right? Applies to: window object
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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Dec 17, 2023 pm 06:55 PM

Essential tools for stock analysis: Learn the steps to draw candle charts in PHP and JS. Specific code examples are required. With the rapid development of the Internet and technology, stock trading has become one of the important ways for many investors. Stock analysis is an important part of investor decision-making, and candle charts are widely used in technical analysis. Learning how to draw candle charts using PHP and JS will provide investors with more intuitive information to help them make better decisions. A candlestick chart is a technical chart that displays stock prices in the form of candlesticks. It shows the stock price

Recommended: Excellent JS open source face detection and recognition project Recommended: Excellent JS open source face detection and recognition project Apr 03, 2024 am 11:55 AM

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages ​​and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

Beginner's Guide: Start from scratch and learn MyBatis step by step Beginner's Guide: Start from scratch and learn MyBatis step by step Feb 19, 2024 am 11:05 AM

Concise and easy-to-understand MyBatis introductory tutorial: write your first program step by step MyBatis is a popular Java persistence layer framework that simplifies the process of interacting with databases. This tutorial will show you how to use MyBatis to create and perform simple database operations. Step 1: Environment setup First, make sure your Java development environment has been installed. Then, download the latest version of MyBatis and add it to your Java project. You can download it from the official website of MyBatis

PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts Dec 18, 2023 pm 03:39 PM

With the rapid development of Internet finance, stock investment has become the choice of more and more people. In stock trading, candle charts are a commonly used technical analysis method. It can show the changing trend of stock prices and help investors make more accurate decisions. This article will introduce the development skills of PHP and JS, lead readers to understand how to draw stock candle charts, and provide specific code examples. 1. Understanding Stock Candle Charts Before introducing how to draw stock candle charts, we first need to understand what a candle chart is. Candlestick charts were developed by the Japanese

Python GUI programming: Get started quickly and easily create interactive interfaces Python GUI programming: Get started quickly and easily create interactive interfaces Feb 19, 2024 pm 01:24 PM

A brief introduction to python GUI programming GUI (Graphical User Interface, graphical user interface) is a way that allows users to interact with computers graphically. GUI programming refers to the use of programming languages ​​to create graphical user interfaces. Python is a popular programming language that provides a rich GUI library, making Python GUI programming very simple. Introduction to Python GUI library There are many GUI libraries in Python, the most commonly used of which are: Tkinter: Tkinter is the GUI library that comes with the Python standard library. It is simple and easy to use, but has limited functions. PyQt: PyQt is a cross-platform GUI library with powerful functions.

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

See all articles