attachEvent方法,为某一事件附加其它的处理事件。(不支持Mozilla系列)
addEventListener方法 用于 Mozilla系列
举例:
document.getElementById("btn").onclick = method1;
document.getElementById("btn").onclick = method2;
document.getElementById("btn").onclick = method3;
如果这样写,那么将会只有medhot3被执行
写成这样:
var btn1Obj = document.getElementById("btn1");
//object.attachEvent(event,function);
btn1Obj.attachEvent("onclick",method1);
btn1Obj.attachEvent("onclick",method2);
btn1Obj.attachEvent("onclick",method3);
执行顺序为method3->method2->method1
如果是Mozilla系列,并不支持该方法,需要用到addEventListener
var btn1Obj = document.getElementById("btn1");
//element.addEventListener(type,listener,useCapture);
btn1Obj.addEventListener("click",method1,false);
btn1Obj.addEventListener("click",method2,false);
btn1Obj.addEventListener("click",method3,false);
执行顺序为method1->method2->method3
使用实例:
1。
var el = EDITFORM_DOCUMENT.body;
//先取得对象,EDITFORM_DOCUMENT实为一个iframe
if (el.addEventListener){
el.addEventListener('click', KindDisableMenu, false);
} else if (el.attachEvent){
el.attachEvent('onclick', KindDisableMenu);
}
2。
if (window.addEventListener) {
window.addEventListener('load', _uCO, false);
} else if (window.attachEvent) {
window.attachEvent('onload', _uCO);
}
addEventListener方法 用于 Mozilla系列
举例:
![](http://hiphotos.baidu.com/see7di/pic/item/3ed8e11f957cb62ff724e404.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/8a977863db51b62c0d33fa04.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/c2ba786023465a08eaf8f804.jpg)
写成这样:
![](http://hiphotos.baidu.com/see7di/pic/item/38ad9444da8dc700500ffe04.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/df66094c627a04b5d62afc04.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/6591caf9e25fbd15242df204.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/e3b47359125809662934f004.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/11b3c72a1141e9d7023bf604.jpg)
如果是Mozilla系列,并不支持该方法,需要用到addEventListener
![](http://hiphotos.baidu.com/see7di/pic/item/1caa279b384e86f9c8eaf404.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/37a548b5f49fc88237d3ca04.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/fd7406ce09a60875b700c804.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/024dc639f775e7bf3b87ce04.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/829e29f379f2341c342acc04.jpg)
使用实例:
![](http://hiphotos.baidu.com/see7di/pic/item/0e19fa50705f1b101138c204.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/01b4d55c574d8e0ffaf2c004.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/24a64043b2876f5d9213c604.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/cf6ca111d8666d32cb80c404.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/fe1e763843a24c6f96ddd804.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/38498223c6a87c08ac34de04.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/8629c3a25b81ece1caefd004.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/386a22ad929aab454a36d604.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/7fa8bfaf73a87e807dd92a04.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/1a43b0cc23ac505c00e92804.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/35772a01424a65427aec2c04.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/15a1ab0e1e9989ab37d12204.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/024f3c2ed04d461c4ec22604.jpg)
![](http://hiphotos.baidu.com/see7di/pic/item/8da6885024b7082e84352404.jpg)