search
JavaScript eventsDec 06, 2016 am 10:35 AM
JavaScriptBrowser

前言:原本这篇文章是打算6号书写出来的,但是基于某些私人原因,希望能够通过这篇文章尽可能的将事件讲解的更加详细和通俗易懂,因此,多花了一天时间,不多说了,接下来对“事件”来一个较为详细的介绍。
欢迎大家互相学习交流。独行冰海
需要了解事件的什么?
对于事件来讲,首先,我们需要了解这样几个概念:事件;事件处理程序;事件类型;事件流;事件冒泡;事件捕获;事件对象;事件方面的性能优化(事件委托、移除事件处理程序);常见的浏览器兼容问题。
事件的概念
事件:指的是文档或者浏览器窗口中发生的一些特定交互瞬间。我们可以通过侦听器(或者处理程序)来预定事件,以便事件发生的时候执行相应的代码。
事件处理程序
事件处理程序:我们用户在页面中进行的点击这个动作,鼠标移动的动作,网页页面加载完成的动作等,都可以称之为事件名称,即:click、mousemove、load等都是事件的名称。响应某个事件的函数则称为事件处理程序,或者叫做事件侦听器。
接下来我们用一段代码来再说明一下上面这两个抽象的概念,具体解释见代码注释:



   
    事件-独行冰海


   
理解事件的基本概念


<script><br/> var main = document.getElementById('main');<br/> // Click here is the name of an event, which is the moment when a click occurs in the browser window . The word on actually allows the click event to respond. Therefore, onclick is called an event handler. In the following code, we reserve a click for the main element through the handler (onclick), so that when the click occurs, the code in the function is executed (a dialog box pops up). <br/> main.onclick = function(){<br/> alert('Click here!');<br/> }<br/></script>

About the event handler, from its initial development to the present, experience changed several times.
The name of the event handler starts with "on", so the handler of the click event is onclick. Initially, HTML event handlers were used, that is to say, each event supported by an element (such as a div) could be specified using an HTML attribute with the same name as the corresponding event handler (that is, the tag's an attribute), the value of this attribute is the JavaScript code that can be executed. For example:




Event - Alone in the Ice Sea


HTML event handler




Of course, we also You can call the function in onclick="".
However, no matter which method is used, many problems of the HTML event handler are exposed:
First of all, the HTML code domain and the JavaScript code are tightly coupled together and are not separated from each other, which makes it abnormal when updating and maintaining the code. difficulty.
Second, extending the scope chain of event handlers will lead to different results in different browsers.
Third, if you do not use the method of calling functions, but write the code directly as in the example, then the code will have poor versatility, which will make the entire site have a large amount of code and poor versatility. If you extract it and store it in a function, you will face another problem - when the function has not been defined, but the HTML and CSS codes have been loaded, and the user clicks, there will be no response at all.

Based on the above problems, people gradually improved the event handler, and at this time, the DOM0 level event handler appeared. (Appeared in the fourth generation WEB browser)
What does the DOM level 0 event handler look like? In fact, it is our most commonly used event binding, such as the following example:




Event - Alone in the Ice Sea


DOM level 0 event handler



<script> After the launch of the DOM level 0 event handler, it has been widely used by various users. However, a problem arises. When I want to bind multiple events of the same type to the same element/tag (for example, for the above The p tag binds 3 click events), which is not allowed. Then, at this time, another type of event handler appeared, which is the DOM2 level event handler. In the DOM2 level, two basic methods are defined to handle the operations of specifying (i.e. binding) and deleting event handlers. , respectively addEventListener() and removeEventListener(), IE9+, FireFox, Safari, Chrome and Opera all support DOM2-level event handlers. For IE8-, IE's proprietary event handler is used: two similar methods - attachEvent() and detachEvent(). <br/>The specific example code is as follows: (taking addEventListener as an example, two writing methods are given)<br/><!doctype html><br/><html><br/><head><br/> <meta charset="UTF-8"> <br/> <title>Event - Alone in the Ice Sea<br/><br/><body><br/> <p id='btn'>DOM0 level event handler<br/>< /body><br/><script><br/> var btn = document.getElementById('btn');<br/> btn.addEventListener("click", test, false);<br/> function test(){<br/> alert(this.innerHTML);<br/> }<br/></script>




   
    事件-独行冰海


   

DOM0级事件处理程序



<script><br/> var btn = document.getElementById(&#39;btn&#39;);<br/> btn.addEventListener("click", function(){<br/> alert(this.innerHTML); <br/> }, false);<br/></script>

addEventListener()和removeEventListener()中的第三个参数,表示的是在哪个事件阶段进行事件处理,如果是false,则指的是冒泡阶段;如果是true,则指的是捕获阶段。
在事件方面,IE与FF存在着一系列的兼容问题,具体问题可查看博文《IE浏览器与FF火狐浏览器在事件上的兼容问题》
关于如何创建一个兼容全部浏览器的事件侦听器,我们在下一篇博文《跨浏览器的事件处理函数——处理DOM2级事件兼容 》当中再做详细的介绍和代码示范。
事件类型
之前在课程的讲解当中,我们把事件分为了三大类,分别是一般事件、表单事件和页面事件。当前我们可以再做细分:
UI事件:如load、unload、error、resize、scroll、select、DOMActive,是用户与页面上的元素交互时触发的。
焦点事件:如blur、DOMFocusIn、DOMFocusOut、focus、focusin、focusout,在元素获得或失去焦点的时候触发,这些事件当中,最为重要的是blur和focus,有一点需要引起注意,这一类事件不会发生冒泡!
鼠标与滚轮事件:如click、dblclick、mousedown、mouseenter、mouseleave、mousemove、mouseout、mouseover、mouseup,是当用户通过鼠标在页面执行操作时所触发的。
滚轮事件:mousewheel(IE6+均支持)、DOMMouseScroll(FF支持的,与mousewheel效果一样)。是使用鼠标滚轮时触发的。
文本事件:textInput,在文档中输入文本触发。
键盘事件:keydown、keyup、keypress,当用户通过键盘在页面中执行操作时触发。
合成事件:DOM3级新增,用于处理IME的输入序列。所谓IME,指的是输入法编辑器,可以让用户输入在物理键盘上找不到的字符。compositionstart、compositionupdate、compositionend三种事件。
变动事件:DOMsubtreeModified、DOMNodeInserted、DOMNodeRemoved、DOMAttrModified、DOMCharacterDataModified等,当底层DOM结构发生变化时触发。IE8-不支持。
变动名称事件:指的是当元素或者属性名变动时触发,当前已经弃用!
对于事件的基本类型,随着HTML5的出现和发展,又新增了HTML5事件、设备事件、触摸事件、手势事件等各种事件,在后面我们再详细介绍。
事件流
事件流:描述的是从页面中接收事件的顺序。
IE与原来的NetScape(网景),对于事件流提出的是完全不同的顺序。IE团队提出的是事件冒泡流;NetScape的事件流是事件捕获流。
事件冒泡
事件冒泡:表示的是,事件开始的时候由最具体的元素(文档中嵌套层次最深的那个节点)接收,然后逐级向上传播到较为不具体的节点(文档)。
事件捕获
事件捕获:表示的是,事件开始的时候由最不具体的节点接收,然后逐级向下传播到最具体的节点。
来看一个实例:



   
    事件-独行冰海


   

       

理解事件的基本概念


   



如果单击了p标签,那么,如果是事件冒泡流的事件流机制,则click事件将按照如下顺序进行执行:p —— div —— body —— html —— document。
如果采用捕获流的事件流机制,则click事件的执行顺序为:document —— html —— body —— div —— p
对于冒泡流的事件流机制,存在如下的兼容问题:
div -> body -> document
>=IE6.0        p -> div -> body -> html -> document
>=Mozilla 1.0    p -> div -> body -> html -> document -> window
欢迎大家互相学习交流。独行冰海
事件对象
事件对象:在触发DOM上的某个事件的时候,会产生一个事件对象event,而在这个对象当中会包含着所有与事件有关的信息。我们书写如下基本代码:



   
    事件-独行冰海


   
理解事件的基本概念


<script><br/> var main = document.getElementById(&#39;main&#39;);<br/> main.onclick = function(event){<br/> console.log(event);<br/> }<br/></script>

使用console.log打印出的结果如下图。
JavaScript事件 详细讲解 - 独行冰海 - 独行冰海

其中有两个信息,我们最为常用,分别是type和target。
type表示的是被触发事件的类型;
target表示的是事件的目标。
其他信息,如:
bubbles:表示事件是否冒泡
cancelable:表示是否可以取消事件的默认行为
currentTarget:表示事件处理程序当前正在处理事件的那个元素
defaultPrevented:表示是否调用了preventDefault()
detail:表示的是与事件相关的细节信息
eventPhase:调用事件处理处理程序的阶段:1表示捕获阶段、2表示处于目标、3表示冒泡阶段
在其中还有一些其他信息,在此就不再一一列举了。
事件方面性能优化
谈一谈事件方面如何优化性能——事件委托和事件处理程序的移除
在JavaScript代码当中,添加到页面中的事件越多,页面的性能也就越差。导致这一问题的原因主要有:
每个函数都是对象,都会占用内存。内存中对象越多,性能也就越差。
必须事先指定所有事件处理程序而导致的DOM访问次数,会延迟整个页面的交互就绪时间。
为了进行页面的性能优化,因此我们会采用两种方法,就是上面提到的——事件委托和事件处理程序的移除。
事件委托
很多人问我,什么时候使用事件委托,其实,简单来说,当时一个页面事件处理程序比较多的时候,我们通常情况下会使用它。
事件委托主要利用了事件冒泡,只指定一个事件处理程序,就可以管理一个类型的所有事件。例如:我们为整个一个页面制定一个onclick事件处理程序,此时我们不必为页面中每个可点击的元素单独设置事件处理程序(onclick)。还是,看一个例子。
效果:点击不同的元素执行不同的操作。
不使用事件委托:



   
    事件-独行冰海
   


   

       
        1
        2
        3
       
   


<script><br/> var left = document.getElementById(&#39;left&#39;);<br/> var first = document.getElementById(&#39;first&#39;);<br/> var second = document.getElementById(&#39;second&#39;);<br/> var third = document.getElementById(&#39;third&#39;);<br/> var right = document.getElementById(&#39;right&#39;);<br/> left.addEventListener("click", function(){<br/> alert(&#39;点击的是左这个字,执行相关操作&#39;); <br/> }, false);<br/> first.addEventListener("click", function(){<br/> alert(&#39;要执行第一个序号对应的相关操作&#39;); <br/> }, false);<br/> second.addEventListener("click", function(){<br/> alert(&#39;要执行第二个序号对应的相关操作&#39;); <br/> }, false);<br/> third.addEventListener("click", function(){<br/> alert(&#39;要执行第三个序号对应的相关操作&#39;); <br/> }, false);<br/> right.addEventListener("click", function(){<br/> alert(&#39;点击的是右这个字,执行相关操作&#39;); <br/> }, false);<br/></script>

不难看出,我们使用了5个事件侦听器,每设置一个就需要绑定一个。
使用事件委托:



   
    事件-独行冰海
   


   

       
        1
        2
        3
       
   


<script><br/> var control = document.getElementById('control');<br/> control.addEventListener("click", function(e){<br/> ) // Note, IE8- is not considered here If you want to write the event processing procedure compatible with all browsers, check the next blog text <br/> var target = e.target; <br/> // use the switch statement here, you can also use IF to judge <br/> Switch ( target.id){<br/>                case "left": {<br/>                                                                                                                                                   . <br/>                 alert('To execute the first The related operations corresponding to the serial number');<br/>                             break; break;<br/>             }<br/>                   case "third": {<br/>                                                     alert('To perform the related operation corresponding to the third serial number');<br/>                             break; ');<br/>               break;<br/> }<br/>          }<br/>     }, false);<br/></script>

Briefly summarize the so-called event delegation: bind events to the parent or ancestor of the element, or even the page, and then use the event to risk The basic principle of bubbles is to detect event target objects and then perform related operations. The advantage is:
It greatly reduces the number of event handlers, and it takes less time to set up event handlers on the page (reduced DOM references - that is, above we use the id to get the tag, the required search operations and the DOM There are even fewer citations).
Document (Note: The above example is not bound to the document, but to the parent div. The most recommended is to bind it to the document) object can be accessed quickly, and can be accessed during the page life cycle Add an event handler for it at any point in time, and there is no need to wait for the DOMContentLoaded or load event. In other words, as long as a clickable element is presented on the page, it immediately has the corresponding functionality.
The entire page will take up less memory space, thereby improving overall performance.
Removing Event Handlers
Whenever an event handler is assigned to an element, a connection is established between the running browser code and the JavaScript code that powers page interaction. The number of connections also directly affects the execution speed of the page. Therefore, when outdated "null event handlers" exist in memory, it will cause memory and performance problems in web applications.
So when will the "empty event handler" appear?
There is an event on the element in the document. This element is removed through some DOM node operations (removeChild, replaceChild, etc. methods), but the event on the DOM node is not removed.
innerHTML replaces a certain part of the page. The original part of the page has an event and is not removed.
The event handler is stuck in memory caused by page unloading.
Solution:
Make reasonable use of event delegation;
When performing related operations, remove the event first, and then remove the DOM node;
Before the page is unloaded, remove all event handlers through the onunload event.
Statement
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
火狐浏览器是哪个国家的火狐浏览器是哪个国家的Sep 15, 2022 pm 02:55 PM

火狐浏览器是“美国”的。Firefox火狐浏览器是开源基金组织Mozilla研发的一个自由及开放源代码的网页浏览器;而Mozilla基金会成立于2003年7月,是一家美国公司,现位于美国加利福尼亚州的芒廷维尤。

电脑浏览器打不开网页但能上网怎么解决电脑浏览器打不开网页但能上网怎么解决Jun 28, 2023 am 11:26 AM

电脑浏览器打不开网页但能上网解决方法:1、网络设置问题,将路由器断电并等待几分钟,然后再重新插上电源;2、浏览器设置问题,清除浏览器缓存和浏览历史记录,确保浏览器没有设置代理服务器或虚拟专用网络;3、DNS设置问题,将DNS设置更改为公共DNS服务器地址;4、杀毒软件或防火墙问题,禁用杀毒软件或防火墙,再尝试打开网页;5、网页本身的问题,等待一段时间或联系网站管理员了解情况。

教你如何强制卸载edge浏览器教你如何强制卸载edge浏览器Jul 15, 2023 pm 06:17 PM

Windows10自带的Edge浏览器在程序面板上是不能被卸载的,但是有些网友不喜欢使用edge浏览器,想要卸载掉它。那么我们可以尝试如何卸载edge浏览器呢?下面小编就教下大家强制卸载edge浏览器的方法。具体的方法如下:1、右击左下角开始,点击“windowspowershell(管理员)”打开。2、进入命令界面,输入代码get-appxpackage*edge*,查找edge包。3、在edge包中找到packagefullname,选中并复制。4、接着输入命令Remove-appxpack

如何修复 Microsoft Edge 浏览器中的黑屏问题如何修复 Microsoft Edge 浏览器中的黑屏问题May 16, 2023 am 10:04 AM

微软于2020年初发布了基于Chromium(谷歌的开源引擎)的NewEdge版本。新Edge的感觉与谷歌Chrome相似,并且具有Chrome中可用的功能。但是,许多用户报告说他们在启动MicrosoftNewEdge后立即看到黑屏。用户可以访问设置菜单,但是当他们单击菜单中的任何选项时,它不起作用,只有黑屏可见。当计算机鼠标悬停在选项上并且用户可以关闭浏览器时,它会突出显示选项。在PC上打开新的Edge浏览器时是否遇到黑屏?那么这篇文章将对你有用。在这篇文章中,

如何禁止 Outlook 在 Edge 浏览器中打开链接如何禁止 Outlook 在 Edge 浏览器中打开链接Aug 03, 2023 am 11:49 AM

如何阻止Outlook在Edge中打开链接在继续之前,请确保您的首选浏览器在Windows中设置为默认浏览器。这可确保在所需的浏览器中打开Outlook链接。要检查并设置默认浏览器:对于Windows10:单击“开始”菜单,然后选择“设置”转到“应用程序”,然后转到“默认应用程序”在默认应用程序列表的底部查找“Web浏览器”如果列出了您的首选浏览器,则一切就绪。如果列出了MicrosoftEdge,请单击它,然后从列表中选择您喜欢的浏览器。如果出现提示,请单击“仍然切换”。修复Edge问题中Ou

简化三步骤,轻松删除Microsoft Edge中的边框简化三步骤,轻松删除Microsoft Edge中的边框Sep 02, 2023 pm 02:57 PM

许多用户对MicrosoftEdge中网页周围的白色边框不满意。他们认为这是不必要的和分散注意力的,他们要求Microsoft完全删除MicrosoftEdge的边框。这类似于“不要修复没有损坏的东西”的说法,但Microsoft似乎没有考虑到这一点。当然,它是一种流行的网络浏览器,提供多种功能,包括内置广告拦截器、跟踪预防和密码管理器。但是,某些用户可能会发现浏览器在网页周围有边框。此边框可能会分散注意力或难看,有几种方法可以将其删除。在关于r/Edge的冗长对话中,一些普通的非内部用户发现,

edge是什么浏览器edge是什么浏览器Jul 19, 2022 pm 12:41 PM

edge是由微软开发的基于Chromium开源项目及其他开源软件的网页浏览器。Edge浏览器主要特点是能够支持目前主流的Web技术,作为Windows10自带浏览器,给微软用户带来更好的功能体验。

苹果自带的浏览器叫什么苹果自带的浏览器叫什么Jul 18, 2022 am 10:42 AM

苹果自带的浏览器叫“Safari”;Safari是一款由苹果公司开发的网页浏览器,是各类苹果设备的默认浏览器,该浏览器使用的是WebKit浏览器引擎,包含WebCore排版引擎及JavaScriptCore解析引擎,在GPL条约下授权,同时支持BSD系统的开发。

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

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),

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version