What are the ways to bind events in javascript

青灯夜游
Release: 2021-06-17 15:47:06
Original
3302 people have browsed it

Binding method: 1. Use the "onclick" attribute directly in the tag to bind the event; 2. Use the "object.onclick=function(){event}" statement to bind the event; 3. Use the "object .attachEvent('click',function(){event})" statement binds the event.

What are the ways to bind events in javascript

The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.

How to bind events in javascript

First of all, let me introduce the three methods we usually use to bind events.

1. Bind events directly in tags

 
Copy after login

2. Use JavaScript objects to bind events

 
Copy after login

3.Event monitoring

 
Copy after login

Extended information:Event delegation

Response to "Too many event handlers" The solution to the problem is event delegation. Event delegation takes advantage of event bubbling, and only one event handler can be developed to manage all events of a certain type. For example, click events always bubble up to the document layer. That is, we can only specify the onclick event handler instead of adding handlers to each event separately.

Let’s look at an example of Alibaba’s written test questions.

What are the ways to bind events in javascript

Style and DOM structure

 
序号
姓名
性别
电话号码
省份
操作
  • 1
    张三
    13788888888
    浙江
    删除
  • 2
    李四
    13788887777
    四川
    删除
  • 3
    王二
    13788889999
    广东
    删除
Copy after login
**No event delegation is required. **The cost of this method is a large waste of performance. If there are thousands of pieces of data, thepage will be severely stuck or even crash.

function Contact(){ this.init(); } Contact.prototype.init = function(){ var userdel = document.querySelectorAll('.user-delete'); for(var i=0;i
        
Copy after login
Use event delegation

and only bind the event once, which greatly reduces performance loss. It is also a very good solution when a large number of event handlers are required.

function Contact(){ this.init(); } Contact.prototype.init = function(){ var lis = document.querySelector('#J_List'); lis.addEventListener('click', function(e){ var target = e.target || e.srcElement; if (!!target && target.className.toLowerCase()==='user-delete') { } }) } new Contact();
Copy after login
【Related recommendations:javascript learning tutorial 】###

The above is the detailed content of What are the ways to bind events in javascript. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!