Overview of event processing
Event processing is a very important part of object-based programming. Without event processing, the program will become very dead and lack flexibility. The process of event processing 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 generally 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:
Let’s take a look at an example:
Such a definition of the tag will allow the document to be read when it is finished A dialog box pops up saying "The web page has been read, 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 used less often, but it is still useful in some situations. The method is:
Method 3 is explained in JavaScript. Method: .
=
; <script> <BR>... <BR>(事件处理程序代码) <BR>... <BR></script><script> <BR> alert('网页读取完成,请慢慢欣赏!'); <BR></script>The thing to note with this method is that the "event handler" is the real code, not the code in the form 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 The handler for the onerror event of the window object. 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 more attributes of the form such as action, target, encoding, and method in the event handler, and then calling the form's submit() method. . Returning false in the onclick event handler of the Link object prevents the browser from opening this connection. That is, if there is a link like this: Go!, then no matter how the user clicks, they 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:
function ignoreError() {
return true;
}
window.onerror = ignoreError;
Apply to: window The object
onfocus event occurs when the window gets focus. Applies to: window object
onload event occurs when all documents are downloaded. The completion of all downloads means that not only the HTML files, but also all the 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. Refer to the onmouseup event. Applies to: Button object; Link object
onmouseout event occurs when the mouse leaves the object. Refer to the 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 changing the image 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. when releasing 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). The form reset can be prevented 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 "survey forms" 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

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


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

Zend Studio 13.0.1
Powerful PHP integrated development environment

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
