摘要: 1. 事件绑定 代码 //通用事件绑定函数 function commonAddEvent(obj, event, func) { if (obj.attachEvent) { //IE obj.attachEvent("on" + event, func); } else { ... 阅读全文
posted @ 2015-12-18 17:33 将军喊俺哥 阅读(239) 评论(0) 推荐(0)