Javascript notes and summaries (2-16) Event object

Source: Internet
Author: User

Event object: The instant the event occurs, the location, the time, the mouse button, the node that is triggered, and so on, is packaged into an object that the system automatically passes to the first parameter of the event function.

"Example" records the event object when the mouse is over a picture

<!DOCTYPE HTML><HTMLLang= "en"><Head>    <MetaCharSet= "UTF-8">    <title>Document</title></Head><Body>    <imgsrc= "A.bmp"width= "+"alt="">        </Body><Script>document.getElementsByTagName ("img")[0].onmouseover= function(e) {console.log (e); }</Script></HTML>      

At this point the console output:

where Target (IE is srcelement, the standard event property is target) indicates the trigger object when the event is triggered.

Also, the following is written because, in the low version of IE, the event object is not placed in the first parameter of the event function, but in the window's event property:

    function (e) {        = window.event | | e;    }

Javascript notes and summaries (2-16) Event object

Related Article

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.