Attachevent ()/addeventlistener () object addition trigger event

Source: Internet
Author: User
Attachevent ()/addeventlistener () object addition trigger event

Sometimes, when an event of an object is triggered, the program to be executed may be a large string, or it may call a function, it is also possible to call another function at the same time.

Document. getelementbyid ("BTN"). onclick = Method1;
Document. getelementbyid ("BTN"). onclick = method2;
Document. getelementbyid ("BTN"). onclick = method3;
If this is the case, only medhot3 will be executed.

Use addachevent in IE,

VaR btn1obj = Document. getelementbyid ("btn1 ");
// Object. attachevent (event, function );
Btn1obj. attachevent ("onclick", Method1 );
Btn1obj. attachevent ("onclick", method2 );
Btn1obj. attachevent ("onclick", method3 );
The execution sequence is method3-> method2-> Method1

Addeventlistener must be used in the Mozilla Series

VaR btn1obj = Document. getelementbyid ("btn1 ");
// Element. addeventlistener (type, listener, usecapture );
Btn1obj. addeventlistener ("click", Method1, false );
Btn1obj. addeventlistener ("click", method2, false );
Btn1obj. addeventlistener ("click", method3, false );
The execution sequence is Method1-> method2-> method3

Look at the Gmail code.

VaR Ka = navigator. useragent. tolowercase ();
VaR RT = ka. indexof ("Opera ")! =-1;
VaR r = ka. indexof ("MSIE ")! =-1 & (document. All &&! RT );

Function ZL (a, B, c) {If (r) {. attachevent ("On" + B, c)} else {. addeventlistener (B, c, false )}}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.