JavaScript
자바스크립트 attachEvent & addEventListener
아롱사태남
2015. 5. 3. 21:06
반응형
빨간줄 addEventListener은
- 표준 브라우저(IE9, 파이어폭스, 오페라, 사파리, 크롬)
- 이벤트는 event명
파란줄 attachEvent은
- IE8 이하 및 오페라인자 넘길 시
01 | function AddEvent(a, b) { |
02 | var div = document.getElementById( "div" ); |
03 | if (div.addEventListener) { |
04 | div.addEventListener( "click" , function (a, b) { test(a, b); }, false ); |
05 | } else { |
06 | div.attachEvent( "onclick" , function (a, b) { test(a, b); }); |
07 | } |
08 | } |
09 | |
10 | function test(a, b) { |
11 | alert(a + b); |
12 | } |
반응형