search
HomeWeb Front-endJS TutorialJavaScript Event Event Learning Chapter 1 Introduction to Event_javascript skills

Without events, there is no script. Take a look at any web page that has JavaScript code: in almost every example there is an event that triggers the script. The reason is very simple. JavaScript is all about adding internal activity to your page: the user does something and the page responds.

So JavaScript needs a way to detect the user's actions and then know when to react. This also requires knowing which function will be executed, and the function will do some actions that you think will add color to your web page. These words describe how to write such a script. Although not easy, it is a very satisfying job.

The event occurs when the user does something. Of course, there are some events that will not be triggered directly by the user: for example, the load event will be triggered when the page is loaded.

JavaScript can detect some events. Starting with Netscape 2, it is possible to add event handlers to HTML elements. These event handlers wait for a certain event, such as clicking a link. When it occurs, the event will be executed through the JavaScript code you specify.

When the user takes an action, he triggers an event. Interaction occurs when your code causes the page to respond to this action.

History of Event Handlers

As mentioned above, there is no need to add JavaScript to the page without event handlers. The best scripts are those that react to user actions. Therefore, when Netscape released the second version of its browser that supported JavaScript, it also supported events.

Netscape mode

Netscape only supports a small set of events. Mouseover and mouseout quickly became popular because of the cool effect of changing the image when the mouse is rolled in and returning to the original state when the mouse is rolled out. And you can see whether the user has submitted the form or reset the form, so client-side verification becomes possible. The browser can also detect when an item in the form gains or loses focus or when the page completes downloading or begins to close. These are very commonplace things today, but at the time it was revolutionary. Because you can provide feedback to the user's actions, true interaction becomes possible.

The event handler in the oldest form looks like this. When the user clicks the link, the event handler is executed and the dialog box pops up.



Notice this oldest way of handling events The fact that it's Netscape's standards is very important. If you want JavaScript to work, other browsers including IE have to follow the Netscape 2 and 3 event handling standards. So these oldest events and event handlers will work just fine in any JavaScript browser.

The current event mode

However, compared to the previous introduction, the current event handler has changed a lot. The first is the rapid growth in quantity. The method of registering event handlers for HTML elements has also changed significantly. Now fully configurable by JavaScript. Instead of having to hang on to a lot of code, you can write some very simple code to set up all the event handlers.
V4 browser also provides a lot of information about events. Where is the mouse? When did the incident occur? Is the keyboard pressed? Ultimately, the browser must make the choice that both an element and its parent element have event handlers for the same action. Which event triggers first?
Because of this feature, the war between browsers has intensified. Netscape and Microsoft have developed two sets of event models that are almost incompatible with each other. Recently a third model has begun to emerge, which is the DOM Event specification published by w3c. Although there is a serious flaw, the w3c model is based on the old Netscape model but is more generalized and general. It is a very outstanding work, adds a lot of interesting functions, and also solves some problems of the old event model.
Since there are three models, event handlers cannot run in the same way in all browsers.

Browser compatibility issues

Let’s continue. Just like DHTML, w3c DOM or other advanced scripting technologies, we must be careful about every byte we buy on behalf of others. Using stopPropagation() in IE or srcElement in Netscape will cause serious errors and render our code useless. Therefore, we must make necessary checks on browser support before using methods or attributes.
A simple code snippet is as follows:

Copy code The code is as follows:

if ( Netscape) {
use Netscape model
}
else if (Explorer) {
use Microsoft model
}


This is just the beginning of solving the problem. The number of event handlers that recent browsers can run is huge, unless your code doesn't allow a handful of browsers other than Netscape or IE to run.

All niche browsers must make the unglamorous decision to support that event model. Konqueror/Safari usually choose to strictly follow W3C standards. Opera and iCab generally support most older Netscape models and some Microsoft models. I haven't done any research on other, more niche browsers.

But other more niche browsers may choose to support Microsoft's method of handling events, while also having the attributes of W3C and old Netscape. There's nothing wrong with that, they all support the models we know in their own way. There should be no problem with your code.

Don’t use browser type detection

First of all, never, ever use browser type detection, it’s a shortcut to hell. If any code uses navigator.userAgent to detect the event model, it is simply useless and should be pulled out directly.
Second, don’t be confused by the event object detection of DHTML object detection. When you write DHTML you usually check for DOM support, for example, if(document.all). If it is supported, then the code can run very well if it uses Microsoft's all container.
But DHTML and event handlers have different browser compatibility modes. For example, Opera 6 supports part of the W3C DOM but does not support the W3C event model. Therefore DHTML object detection will make wrong decisions under Opera. Therefore, it is incorrect for the code to use if(document.layers) or other event model detection.

The right question

So what do we do? The name of the Event property causes these problems. If we use different methods for specific object detection, we can basically solve 99% of browser incompatibility problems. Only the mouse position is very troublesome, everything else is relatively simple.
Also, it’s best not to think about those three event models at all. In fact, we should understand four event registration models, two event execution models and two event sequences. Here you can quickly view the event compatibility list.
Now it sounds like it’s very complicated, but it’s not. When we notice this, we should start to truly understand event handlers. It's all about asking the right questions. Don't ask "How do I write the code for an event handler?" Even though it's the right question, it's hard to answer - it would take an 11-page article to explain. Therefore you should ask specific questions that have specific answers:

"What events are there?"
"How do I register an event handler for an HTML element?"
"How do I prevent it? What happens when the default action occurs? "
"How do I access an event when I want to get more information? "
" When I successfully trigger the event, how do I read its properties? ? ”
“If an element and its parent element both have event handlers for an event, who executes it first? ”

All the above questions will be answered in detail in separate chapters.
The trick to writing cross-browser event handlers is not to use the overall event model but to answer each question individually. You will find that you only need to consider browser compatibility issues when you need to read event properties.
First select an event registration model, then make sure that this event will be triggered in all browsers, then read the correct attributes, and finally solve the problem of event triggering order - if any. This way you can easily resolve browser compatibility issues and ensure your code runs well in all browsers.

Continue

If you want to learn the events in order, you should start reading the next chapter.

Write event handler code

So how to write event handler code? For those who want to get answers quickly and plan to learn theory later, I will give a brief overview in this chapter.

Register an event handler

The first step is to register your event handler. What you need to be sure of is that the browser will execute your code at all times.
There are four ways to register event handlers: inline, traditional, w3c and Microsoft.
It is best to use the traditinal method because it works well across browsers and has great freedom and versatility. Register an event handler as follows:
Copy code The code is as follows:

element.onclick = doSomething;
if (element.captureEvents) element.captureEvents(Event.CLICK);


Now this function doSomething() is registered as an event handler for the click event of the HTML element element. This means that whenever the user clicks on this element, doSomething() will be executed.

Access this event

But once you register your event handler you start writing the real code. Usually you want to access the event itself, so you can read the event's information.

To access this event so you can read out its properties, typically your event handler starts as follows:
Copy code The code is as follows:

function doSomething(e) {
if (!e) var e = window.event
// e refers to the event
}


Now e represents the event in all browsers, and you can also access this event.

Accessing this HTML element

Sometimes you want to be able to access the element where the event occurred. There are two ways here: use this keyword or use the target/srcElement attribute.

A safer way to access HTML elements is to use the this keyword. this does not always point to the correct HTML element, but works well with traditional mode.

Copy code The code is as follows:

function doSomething(e) {
if (!e) var e = window.event
// e refers to the event
// this refers to the HTML element which currently handles the event
// target/srcElement refer to the HTML element the event originally took place on
}


The target/srcElement attribute contains a reference to the HTML element where the event originally occurred. Very useful, but when the event is captured or bubbled, it remains the element where the event originally occurred and does not change.

Reading properties

The problem of reading some interesting event properties (event properties) is the worst part of browser compatibility. Study this compatibility list, then write your own code to get the information you need.
Make sure to always use the most careful object inspection. First determine whether each attribute exists, and then read its value. For example:
Copy code The code is as follows:

function doSomething(e) {
if (!e) var e = window.event
if (e.keyCode) code = e.keyCode;
else if (e.which) code = e.which;
}

The code now includes the key pressed and is compatible with all browsers.

Event order

Finally, you need to decide if you want the event to bubble up. If you don’t want an event to bubble up, then block it:
Copy the code The code is as follows:

function doSomething(e) {
if (!e) var e = window.event
// handle event
e.cancelBubble = true;
if (e.stopPropagation) e.stopPropagation( );
}


Writing Code
Now you can start writing the code for the event handler. Through the previous code and information, you can know when the event occurs and how your code should respond. Remember: make the interaction more logical or your users won't understand what's going on.

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
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

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

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

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

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

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

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

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

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

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

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

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

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

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

20+道必知必会的Vue面试题(附答案解析)20+道必知必会的Vue面试题(附答案解析)Apr 06, 2021 am 09:41 AM

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

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

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

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)