2012年9月17日
摘要: 一:事件监听function addEventHandler(target,type,func){ if(target.addEventListener){ target.addEventListener(type,func,false); }else if(target.attchEvent){ target.attachEvent('on' + type,func); } else target['on' + type] = func;}说明:target 为文档结点、 document、 window、 XMLHttpRequest t... 阅读全文
posted @ 2012-09-17 18:02 小落落 阅读(159) 评论(0) 推荐(0)