Window. addeventlistener is used to implement multiple functions for a JS event.

Source: Internet
Author: User

You may have encountered this situation, that is, in JS Code When window. onload is used, the onload event in the body may be affected. You can write all the data in the body or in window. onload, but this is not very convenient. Sometimes we need to use both of them at the same time. In this case, we need to use window. attachevent and window. addeventlistener to solve the problem.

The following is a solution. For the usage of attachevent and addeventlistener, Google or Baidu.Copy codeThe Code is as follows: if (document. All ){
Window. attachevent ('onload', function name) // in IE
}
Else {
Window. addeventlistener ('load', function name, false); // Firefox
}

In recent work, the attachevent method is used. This method can append other processing events to an event, which may be useful sometimes. Here we will summarize its basic usage.

For more information about its syntax, see the DHTML manual. Here is an example from the Internet:Copy codeThe Code is as follows: 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.

Write it like this:Copy codeThe Code is as follows: 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

If the Mozilla series does not support this method, you need to use addeventlistener.Copy codeThe Code is as follows: 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

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.