Home Web Front-end JS Tutorial Overview of js custom events and event interaction principles (2)_javascript skills

Overview of js custom events and event interaction principles (2)_javascript skills

May 16, 2016 pm 05:42 PM
interaction Custom events

The purpose of js custom events (1) is just to let everyone simply understand how custom events are simulated. It is not difficult to find that there will be many defects, such as:
1. This event object can only register one event. Provide multiple events
2. The registration method does not return some information

Let’s solve these problems below. The following is the source code of MyEvent.js:

Copy code The code is as follows:

function MyEvent() {
this.handlers={};
}
MyEvent.prototype={
addHandler:function(type,handler)
{
if(typeof this.handlers[type] == "undefined")
{
this.handlers[type]=[];
}
this.handlers[type].push(handler);
},
fire:function(event)
{if(this.handlers[event.type] instanceof Array)
{
var handlers=this.handlers[event.type];
for(var i= 0, len=handlers.length;i{
handlers[i](event);
}
}
},
removeHandler:function(type , handler)
{
if(this.handlers[type] instanceof Array)
{
var handlers=this.handlers[type];
for(var i= 0, len= handlers.length;i{
if(handlers[i]===handler)
{
break;
}
}
handlers. splice(i,1);
}
}
};

This type is the optimization of the first article.
The attribute handler becomes handlers and becomes an array.
The addHandler() method accepts two parameters: the event type and the function used to handle the event. When this method is called, a check will be made to see if there is already an array
for this event type in the handlers attribute; if not, a new one will be created. Then use push() to add that handler to the end of the array.

The fire() method is used to trigger an event. This method accepts a parameter, which is an object containing at least the type attribute. Otherwise, it cannot be determined whether the handlers already exist. It will use this type to find a set of handlers corresponding to the event type, call each function, and give the event object. Because these are custom objects, other things on the event object can be defined by you.

The removeHandler() method is an auxiliary to addHandler(). They accept the same parameters: the type of event and the event handler. This method searches the array of event handlers to find the location of the handler to be removed. If found, use the break operator to exit the loop. The item is then removed from the array using the splice() method.

Let’s change the usage method here to a longer-used form. Now according to my knowledge, many products have two ways to use events. One is direct inheritance (js does not have this concept in this province, but we can By simulating the effect of inheritance through the prototype chain (not explained in detail here), this event object will have these behaviors, but this method is more limited. Another way is more common, which is to create it on the class using the event. A property to hold this object. For example: create a Student.js file in the same directory, the code inside is as follows:
Copy the code The code is as follows:

function Student(name)
{
this.myEvent=new MyEvent();
this.name=name;
}
Student.prototype={
setName:function(name)
{
var eventStart={
type:"changeNameStart",
newName:name,
oldName:this.name
};
this.myEvent.fire(eventStart);
this.name=name;
}
}

There is a student class here, and a MyEvent object is initialized in the constructor as Attribute, initialize the name attribute through parameters.

Provides a method setName for changing the name, but before changing the name, a listener that may trigger the event changeNameStart is set.
Create an html page and place it in the same directory. The code is as follows:
Copy the code The code is as follows:












This will be very convenient to use and is also a common way of use.
Generally when using events in real projects, we still need to do some optimization, such as:
1. Users do not know what events we provide. From the code, it seems that any event can be added to handlers. , but the event that really takes effect (where we set the fire() method) cannot be seen intuitively from the code. Generally, when making products, we need to consider this aspect.

2. Did you find that the parameter event of fire does not seem to be fixed. In the Daxing project, it is best to make the event a type. It is more convenient to use in the fire place. There may be many kinds of events. Type, then there may be some judgments in fire.
I hope it will be helpful to readers who are new to js events and can communicate with each other.
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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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)

Turn on split-screen interaction in win11 Turn on split-screen interaction in win11 Dec 25, 2023 pm 03:05 PM

In the win11 system, we can enable multiple monitors to use the same system and operate together by turning on split-screen interaction. However, many friends do not know how to turn on split-screen interaction. In fact, just find the monitor in the system settings. The following is Get up and study. How to open split-screen interaction in win11 1. Click on the Start menu and find "Settings" 2. Then find the "System" settings there. 3. After entering the system settings, select "Display" on the left. 4. Then select "Extend these displays" in the multi-monitor on the right.

VUE3 basic tutorial: Custom events using Vue.js VUE3 basic tutorial: Custom events using Vue.js Jun 15, 2023 pm 09:43 PM

Vue.js is a popular JavaScript framework that provides many convenient features, so it is very useful when developing web applications. The custom event system in Vue.js makes it more flexible and allows for better code reusability through component event firing and handling. In this article, we will discuss how to use custom events with Vue.js. The basis of custom events in Vue.js In Vue.js, we can listen to DOM events through the v-on directive. For example,

Vue3+TS+Vite development skills: how to interact with the backend API Vue3+TS+Vite development skills: how to interact with the backend API Sep 08, 2023 pm 06:01 PM

Vue3+TS+Vite development skills: How to interact with the back-end API Introduction: In web application development, data interaction between the front-end and the back-end is a very important link. As a popular front-end framework, Vue3 has many ways to interact with back-end APIs. This article will introduce how to use the Vue3+TypeScript+Vite development environment to interact with the back-end API, and deepen understanding through code examples. 1. Use Axios to send requests. Axios is

How does uniapp implementation use JSBridge to interact with native How does uniapp implementation use JSBridge to interact with native Oct 20, 2023 am 08:44 AM

How uniapp implements using JSBridge to interact with native requires specific code examples 1. Background introduction In mobile application development, sometimes it is necessary to interact with the native environment, such as calling some native functions or obtaining some native data. As a cross-platform mobile application development framework, uniapp provides a convenient way to interact with native devices, using JSBridge to communicate. JSBridge is a technical solution for the front-end to interact with the mobile native end.

Methods and FAQs for interacting with PHP and JavaScript Methods and FAQs for interacting with PHP and JavaScript Jun 08, 2023 am 11:33 AM

PHP and JavaScript interaction methods and FAQs With the rapid development of the Internet, web pages have become the main platform for people to obtain information and communicate. PHP and JavaScript are the two most commonly used languages ​​for developing web pages. They all have their own advantages and applicable scenarios, and in the development process of large websites, the combination of the two will expand the work capabilities of developers. This article will introduce the methods of interaction between PHP and JavaScript and answers to common questions. PHP and JavaScript

The development history and trend prospects of front-end and back-end development The development history and trend prospects of front-end and back-end development Mar 26, 2024 am 08:03 AM

With the rapid development of the Internet and the rapid changes in information technology, front-end and back-end development, as two important IT fields, have also made great progress in the past few decades. This article will explore the development history of front-end and back-end development, analyze current development trends, and look forward to future development directions. 1. The development history of front-end and back-end development In the early stages of the Internet, website development mainly focused on the presentation of content, and front-end development work mainly focused on technologies such as HTML, CSS, and JavaScript to achieve the basic functionality of the page.

How to use the enterprise WeChat interface to interact with PHP for data How to use the enterprise WeChat interface to interact with PHP for data Jul 05, 2023 am 09:00 AM

How to use the Enterprise WeChat interface to interact with PHP for data. Enterprise WeChat is an important platform for internal communication and collaboration within the enterprise. Developers can realize data interaction with Enterprise WeChat through the Enterprise WeChat interface. This article will introduce how to use PHP language to call the enterprise WeChat interface to realize data transmission and processing. First, you need to create an enterprise WeChat application and obtain the corresponding CorpID, Secret and AgentID. This information can be found in the "Applications and Mini Programs" in the Enterprise WeChat management backend. Next, I

How to use Swoole to implement WebSocket server and client interaction How to use Swoole to implement WebSocket server and client interaction Nov 07, 2023 pm 02:15 PM

WebSocket has become a commonly used real-time communication protocol in modern web applications. Developing WebSocket servers using PHP generally requires the use of extensions such as Swoole, because it provides support for asynchronous programming, process management, memory mapping, and other WebSocket-related features. In this article, we will discuss how to use Swoole to implement WebSocket server-client interaction and provide some specific code examples. Swoole and W

See all articles