码迷,mamicode.com
首页 > 其他好文 > 详细

发布订阅

时间:2018-08-29 14:07:43      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:on()   log   push   list   his   prototype   ice   item   fun   

核心类

var Center=function(){

this.beNoticeList=[];

}

Center.prototype.add=function(obj){

this.beNoticeList.push(obj);

}

 

Center.prototype.notice=function(){

for(var item in this.beNoticeList)
{

this.beNoticeList[item].update();

}

}

var user1={update:function(){

console.log("this is user1")

}}

var user2={update:function(){

console.log("this is user2")

}}

var  dep=new Center();

dep.add(user1);

dep.add(user2);

dep.update();

c

onsole.log("this is user1")

发布订阅

标签:on()   log   push   list   his   prototype   ice   item   fun   

原文地址:https://www.cnblogs.com/gaojian0927/p/9552895.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!