


The javascript event handling process is divided into several steps
Javascript event processing process is divided into three steps: 1. The event occurs; 2. Start the event handler; 3. The event handler reacts. Among them, in order for the event handler to be started, the corresponding event must be called through the specified object, and then the event handler is called through the event.
The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.
JavaScript is an object-based language, and one of its most basic features is event-driven. It can simplify all operations in the graphical interface environment. Actions via the mouse or hotkeys are called events. A series of program actions triggered by the mouse or hot keys is called an event driver, and the program or function that processes events is called an event handler.
Overview of events and event processing
Event processing is a very important link in object-oriented programming. It can make the logical structure of the program clearer and make The program is more flexible and improves program development efficiency.
The process of event processing is divided into three steps:
①The event occurs;
②Start the event handler;
③The event handler reacts.
Among them, in order for the event handler to be started, the corresponding event must be called through the specified object, and then the event handler is called through the event. Event handlers can be any JavaScript statements, but generally use specific custom functions to handle events.
Events and event names
Events are page actions that can be responded to through scripts. Events occur when the user presses the mouse button, submits a form, or even moves the mouse on the page. An event handler is a piece of JavaScript code that is always associated with a specific part of the page and a certain event. Event handlers are called when an event associated with a specific part of the page occurs.
Most event names are descriptive and easy to understand. For example, click.submit.mousecover, etc. You can guess its meaning through the name. However, there are also a few events whose names are difficult to understand, such as blur (literally meaning "blur" in English), which means that a field or a form has lost focus. Generally, the naming principle of event handlers is to add the prefix on before the event name. For example, for the click event, the handler is named onclick.
Common Events in JavaScript
JavaScript related events
Events |
illustrate |
|
Mouse and keyboard events | onclick | This event is triggered when the mouse is clicked |
ondblclick | This event is triggered when the mouse is double-clicked | |
onmousedown | This event is triggered when the mouse is pressed | |
onmouseup | This event is triggered when the mouse is pressed and released | |
onmouscover | When the mouse moves above the range of an object This event is triggered when | |
onmousemove | This event is triggered when the mouse moves | |
onmouscout | When the mouse This event is triggered when leaving the scope of an object | |
onkeypress | This event is triggered when a key on the keyboard is pressed and released | |
onkeydown | This event is triggered when a key on the keyboard is pressed | |
onkeyup | When a key on the keyboard is pressed This event is triggered when pressed and released | |
Page related events | onabort | The picture is downloaded by the user This event is triggered when an interruption occurs |
onbeforeunload | This event is triggered when the content of the current page is about to be changed | |
This event is triggered when an error occurs | ||
This event is triggered when the page content is completed (that is, the page loading event) | ||
This event is triggered when the browser window size is changed | ||
Triggered when the current page will be changed This event |
Event | Description | |
##Form related events | onblurThis event is triggered when the current element loses focus | |
current This event is triggered when an element loses focus and the element's content changes | ||
This event is triggered when an element gains focus | ||
This event is triggered when the RESET attribute in the form is activated | ||
This event is triggered when a form is submitted | ||
Rolling subtitle event | onbounceThis is triggered when the content in Marquce moves outside the Marquce display range Event | |
This event is triggered when the Marquce element completes the content that needs to be displayed. This event is triggered when the Marquce element starts to display the content | ||
This event is triggered when the Marquce element starts displaying content | ||
Edit event | onbeforecopyThis event is triggered when the currently selected content on the page is to be copied to the clipboard of the viewer's system | |
When part or all of the content on the page is copied This event can be fired when cutting to the viewer's system clipboard | ||
This event is triggered when the current element is about to enter the editing state | ||
This event is triggered when content is to be pasted from the viewer's system clipboard onto the page | ||
Notify the target object when the viewer pastes the content in the system clipboard | ||
When the viewer presses the right button of the mouse and the menu appears or the page is triggered by keyboard keys This event is triggered when the menu is displayed | ||
This event is triggered when the currently selected content on the page is copied | ||
This event is triggered when the currently selected content on the page is cut | ||
This event is triggered when an object is dragged (Activity event) | ||
This event is triggered when the mouse drag ends, that is, when the mouse button is released | ||
This event is triggered when the object is dragged by the mouse into its container scope | ||
When the object is dragged by the mouse This event is triggered when the dragged object leaves the scope of its container | ||
This event is triggered when the dragged object is dragged within the scope of another object's container Event | ||
This event is triggered when an object is to be dragged | ||
This event is triggered when the mouse button is released during a dragging process | ||
This event is triggered when the element loses the selection focus formed by mouse movement | ||
This event is triggered when the content is pasted | ||
When the text content is pasted This event is triggered on selection | ||
This event is triggered when selection of text content will start to occur |
Event | Description | |
##Data binding event | onafterupdateThis event is triggered when the data completes the transfer from the data source to the object | |
This event is triggered when the data source changes | ||
This event is triggered when the data reception is completed | ||
This event is triggered when the data source changes | ||
When all valid data from the data source has been read This event is triggered when | ||
When the data transfer is canceled using the onbeforeupdate event trigger, instead of the afterupdate event | ||
onrowenter | This event is triggered when the data of the current data source changes and there is new valid data | |
This event is triggered when the data of the current data source will change | ||
This event is triggered when the current data record will be deleted | ||
This event is triggered when the current data source is about to insert a new data record | ||
onafterprint | This event is triggered when the document is printedonbeforeprint | |
onfilterchange | ||
onhelp | ||
onpropertychange | ||
onreadystatechange | ||
When using event handlers to operate the page, the most important thing is how to specify the event handler through the event of the object.
1. In JavaScript
To call an event handler in JavaScript, you first need to obtain a reference to the object to be processed, and then assign the processing function to be executed to the corresponding event.
Code:<input id="save" name="bt_save" type="button" value="保存" /> <script language="JavaScript" type="text/javascript"> var b_save=document.getElementById("save"); b_save.onclick=function(){ alert("单击了保存按钮"); } </script>

2. In HTML
Assign event handling in HTML Program, you only need to add the corresponding event in the HTML tag and specify the code or function name to be executed. <input name="bt_save" type="button" value="保存" onclick="clickFunction();"/>
<script language="JavaScript" type="text/javascript">
function clickFunction(){
alert("单击了保存按钮");
}
</script>
Copy after login【Related recommendations:
<input name="bt_save" type="button" value="保存" onclick="clickFunction();"/> <script language="JavaScript" type="text/javascript"> function clickFunction(){ alert("单击了保存按钮"); } </script>
javascript video tutorial
,programming video】
The above is the detailed content of The javascript event handling process is divided into several steps. For more information, please follow other related articles on the PHP Chinese website!

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

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.

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

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

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

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).
