zoukankan      html  css  js  c++  java
  • JS实现简单的观察者模式

    <!DOCTYPE html>
    <html>
    	<head>
    		<meta charset="UTF-8">
    		<title></title>
    	</head>
    	<body>
    		
    		<div id="box">
    			点我发布事件
    		</div>
    		<script src="js/jquery-2.1.0.min.js" type="text/javascript" charset="utf-8"></script>
    		<script type="text/javascript">
    			var pubSub = function(){};
    			pubSub.prototype.threadPool = [];
    			pubSub.subscribe = function(name,cb){
    				pubSub.prototype.threadPool.push({
    					name:name,
    					fun:cb
    				});
    			}
    			
    			pubSub.publish = function(name){
    				var threadPool = pubSub.prototype.threadPool;
    				for (var i in threadPool) {
    					setTimeout(function(i){
    						if(threadPool[i]['name']==name){
    							threadPool[i]['fun']();
    						}
    					}(i),0);
    				}
    			}
    			
    			$("#box").click(function(){
    				pubSub.publish('dateChange');
    			})
    			
    			pubSub.subscribe('dateChange',function(){
    				this.name = 'lisi'
    				console.log('hello world')
    			})
    			
    			
    			pubSub.subscribe('dateChange',function(){
    				this.name = 'zhangsan'
    				console.log('这是我订阅的第二个方法')
    			})
    			
    		</script>
    	</body>
    </html>





    var PubSub = function(){
    this.threadPool = [];
    this.subscrib = function(name,fun){
    this.threadPool.push({
    name:name,
    fun:fun
    });
    }.bind(this);

    this.publish = function(name){
    this.threadPool.forEach(function(v,i){
    if(v['name']==name){
    v['fun']();
    }
    });
    }.bind(this);
    };
    var p = new PubSub();
    p.subscrib('hello',function(){console.log('hello1')});
    p.subscrib('hello',function(){console.log('hello2')});
    p.publish('hello');

      

    有时间会更新一下。。。。。。

  • 相关阅读:
    鲁迅说过搜索引擎
    下载github上文件与release的安装包-解决s3.amazonaws.com问题
    作业九----DFA最小化
    作业八----非确定的自动机NFA确定化为DFA
    作业七----正规式到正规文法与自动机
    作业六----正规文法与正规式
    第五次作业----词法分析程序的设计与实现
    第四次作业
    作业三
    2.文法和语言
  • 原文地址:https://www.cnblogs.com/MainActivity/p/9094193.html
Copyright © 2011-2022 走看看