标签:
//自定义事件 function Event() { var handles = []; //绑定事件 this.addHandle=function(fn) { handles.push(fn); } //触发事件 this.exec = function () { if (handles.length > 0) { handles.forEach(function (value, index, array) { value(); }); } } }
标签:
原文地址:http://www.cnblogs.com/caoyc/p/5727014.html