首页 > 开发 > JS > 正文

nodejs 中模拟实现 emmiter 自定义事件

2024-05-06 16:28:54
字体:
来源:转载
供稿:网友
这篇文章主要介绍了Nodejs中自定义事件实例,比较简单的一个例子,需要的朋友可以参考下。
 

nodejs 中模拟实现 emmiter 自定义事件

<!DOCTYPE html><html> <head>  <meta charset="UTF-8">  <title></title>  <script>   function Emitter() {    this.events = {}; //存放事件的地方   }   Emitter.prototype.on = function(type, cb) {    var events = this.events;     events = events[type] = events[type] || [];    events.push(cb);   };      Emitter.prototype.emit = function(type) {    var args = [].slice.call(arguments, 1);    var cbs = this.events[type], cb;    while (cb = cbs && cbs.shift()) {     cb.apply(this, args);    }   };   var emitter = new Emitter();   emitter.on('customevent', function(param) {    alert(param);   });   emitter.on('customevent', function() {    alert(1);   });   emitter.emit('customevent', 'xxx');  </script> </head> <body> </body></html>
 


注:相关教程知识阅读请移步到JavaScript/Ajax教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表