简体   繁体   中英

window.addEventListener is not working

Can you please help me understand where the code is wrong. The below code doesn't invoke the event handler for window.onload event.

 <!DOCTYPE HTML> <html> <head> <title>Example</title> <script type="text/javascript"> window.addEventListener("onload", onLoad) function onLoad(e) { debugger; console.log(Object.getOwnPropertyNames(e)); } </script> </head> <body> </body> </html> 

Is this what you want?

window.onload = function(e) {
    debugger;
    console.log(Object.getOwnPropertyNames(e));
};

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM