search
HomeWeb Front-endJS TutorialSummary of JS control events_javascript skills

Overview:

Events are crucial for controls. The message communication mechanism of the control uses events at the lowest cost. However, there are some troubles to be solved for JS controls. The JS class itself does not support events, and the DOM model does. The event is only applicable to the browser's DOM nodes. So creating a set of events is what we need to do before we write the control.

Event Mechanism

I don’t want to say more about the event mechanism. The descriptions of events in various languages ​​are very specific, and they are all an implementation of the observer pattern. , we can extract the necessary interface for the event (since the control library is based on jQuery, the interface is consistent with jquery):

1.on: Bind event

2.off: Delete event

3.fire: Trigger event

4.addTarget: Add bubbling object

5.publish: Allow event bubbling

Events in jQuery

The event functions in jQuery are very rich, but they must be jQuery objects to support them. The control classes we define cannot directly use jQuery events, and there are also problems with the context of the events, so We need to encapsulate the control's events ourselves.

Callbacks in jQuery is a mechanism for callbacks added in 1.7. It is very convenient to use, but the problem is that the specified context needs to be specified when it is triggered. We can encapsulate it into our own event class.

Binding event:

Function prototype: function on(eventType,callback) Parameters:
1.eventType: event type
2.callback: Callback function
3.scope: The context of the callback function. This variable is rarely used in the real control binding process, and there are alternatives, so for the sake of simplicity, the scope variable is used in this function and all functions below was introduced in .

The context of the above callback function is the control itself to which the event is bound

Delete binding:
Function prototype: function off(eventType,callback) Parameters are the same as above:

1.eventType: event type
2.callback: callback function, when this variable is omitted, all bound functions of this event type are deleted.
In the process of real control development and use, deleting events is much more troublesome than binding events. When deleting events, you need to have a reference to the function when binding the event. If you need to delete and add the same event frequently, please consider Use delegate

to trigger an event
function prototype: fire(eventType) :

1. eventType: event type, bound to a function of this type on the object implement.

There are 2 points to note here:

1. The way to trigger events, we use the 'stopOnFalse' method here, which is bound to the same event type The following functions are executed sequentially. If one of the return values ​​​​is false, then the following functions terminate execution. For other ways to trigger events, refer to jquery’s Callbacks.

2. Whether the event is executed by bubbling, that is to say, if a control has multiple sub-controls, then when the sub-control triggers a click event, it can bubble up to the parent control. We only need to listen to the parent control's Just bubble the event

Event bubbling

Function prototype: function(eventType,bubble):

1.eventType: Event type
2.bubble: Whether to bubble

This function is used in conjunction with function addTarget(control).

addTarget adds the object to which the event bubbles. In the control implementation, the parent control of the control is specified by default as the object to which it bubbles.

As mentioned in the above trigger event, allowing control events to bubble up has many benefits:

1. After the event is bound, the addition and deletion of sub-controls will not be affected

2. Events are more convenient to use, and there is no need to understand the internals of the control

Corresponding to event bubbling is delegation (delegate and undelegate). Delegation relies on event bubbling. Both DOM event mechanism and jQuery support delegation. , this is because the browser itself supports DOM event bubbling, and the event bubbling mechanism we implemented on the control is enough for us to achieve the effect of delegation, so we will not implement the delegation interface.


Event code implementation

I wrote the specific code implementation and some help methods in the following code, which is not convenient to expand in the article, if you are interested You can take a look and see that the subsequent control libraries are based on these helper methods and event objects. Other help methods in the file are explained in other chapters.

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
From Websites to Apps: The Diverse Applications of JavaScriptFrom Websites to Apps: The Diverse Applications of JavaScriptApr 22, 2025 am 12:02 AM

JavaScript is widely used in websites, mobile applications, desktop applications and server-side programming. 1) In website development, JavaScript operates DOM together with HTML and CSS to achieve dynamic effects and supports frameworks such as jQuery and React. 2) Through ReactNative and Ionic, JavaScript is used to develop cross-platform mobile applications. 3) The Electron framework enables JavaScript to build desktop applications. 4) Node.js allows JavaScript to run on the server side and supports high concurrent requests.

Python vs. JavaScript: Use Cases and Applications ComparedPython vs. JavaScript: Use Cases and Applications ComparedApr 21, 2025 am 12:01 AM

Python is more suitable for data science and automation, while JavaScript is more suitable for front-end and full-stack development. 1. Python performs well in data science and machine learning, using libraries such as NumPy and Pandas for data processing and modeling. 2. Python is concise and efficient in automation and scripting. 3. JavaScript is indispensable in front-end development and is used to build dynamic web pages and single-page applications. 4. JavaScript plays a role in back-end development through Node.js and supports full-stack development.

The Role of C/C   in JavaScript Interpreters and CompilersThe Role of C/C in JavaScript Interpreters and CompilersApr 20, 2025 am 12:01 AM

C and C play a vital role in the JavaScript engine, mainly used to implement interpreters and JIT compilers. 1) C is used to parse JavaScript source code and generate an abstract syntax tree. 2) C is responsible for generating and executing bytecode. 3) C implements the JIT compiler, optimizes and compiles hot-spot code at runtime, and significantly improves the execution efficiency of JavaScript.

JavaScript in Action: Real-World Examples and ProjectsJavaScript in Action: Real-World Examples and ProjectsApr 19, 2025 am 12:13 AM

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

JavaScript and the Web: Core Functionality and Use CasesJavaScript and the Web: Core Functionality and Use CasesApr 18, 2025 am 12:19 AM

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

Understanding the JavaScript Engine: Implementation DetailsUnderstanding the JavaScript Engine: Implementation DetailsApr 17, 2025 am 12:05 AM

Understanding how JavaScript engine works internally is important to developers because it helps write more efficient code and understand performance bottlenecks and optimization strategies. 1) The engine's workflow includes three stages: parsing, compiling and execution; 2) During the execution process, the engine will perform dynamic optimization, such as inline cache and hidden classes; 3) Best practices include avoiding global variables, optimizing loops, using const and lets, and avoiding excessive use of closures.

Python vs. JavaScript: The Learning Curve and Ease of UsePython vs. JavaScript: The Learning Curve and Ease of UseApr 16, 2025 am 12:12 AM

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

Python vs. JavaScript: Community, Libraries, and ResourcesPython vs. JavaScript: Community, Libraries, and ResourcesApr 15, 2025 am 12:16 AM

Python and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot 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.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools