代码如下: /** * descr iption 事件绑定,兼容各浏览器 * param target 事件触发对象 * param type 事件 * param func 事件处理函数 */ function addEvents(target, type, func) { if (target.addEventListener) //非ie 和ie9 target.addEventListener(type, func, false); else if (target.attachEvent