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

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

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

In-depth discussion of the root causes of the difference in console.log output. This article will analyze the differences in the output results of console.log function in a piece of code and explain the reasons behind it. �...

Explore the implementation of panel drag and drop adjustment function similar to VSCode in the front-end. In front-end development, how to implement VSCode similar to VSCode...
