标签:
target.addEventListener(type, listener, useCapture);
removeEventListener(event,function,capture/bubble);
target.attachEvent(type, listener);
detachEvent(event,function);
|
addEventListener |
attachEvent |
|
onblur() |
blur |
|
onfocus() |
focus |
|
onchange() |
change |
|
onmouseover() |
mouseover |
|
onmouseout() |
mouseout |
|
onmousemove() |
mousemove |
|
onmousedown() |
mousedown |
|
onmouseup() |
mouseup |
|
onclick() |
click |
|
ondblclick() |
dblclick |
|
onkeydown() |
keydown |
|
onkeyup() |
keyup |
|
onkeypress() |
keypress |
|
onsubmit() |
submit |
|
onload() |
load |
|
onunload() |
unload |
addEventListener()和attachEvent()
标签:
原文地址:http://www.cnblogs.com/happyfreelife/p/4248396.html