Preguntas etiquetadas con attachevent

2
¿Uso correcto de addEventListener () / attachEvent ()?
Me pregunto cómo usar addEventListenerrespectivamente attachEventcorrectamente. window.onload = function (myFunc1) { /* do something */ } function myFunc2() { /* do something */ } if (window.addEventListener) { window.addEventListener('load', myFunc2, false); } else if (window.attachEvent) { window.attachEvent('onload', myFunc2); } // ... o function myFunc1() { /* do something */ } if …
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.