<html><head><meta http-equiv="Context-Type:text/html;charset=utf-8"/><title>自定义事件之观察者模式</title><script type="text/javascript" src="common.js"></script></head><body><input type="button" name="btn" value="点击" id="mybtn"/><script type="text/javascript">function inherit(sub,sup){var prototype=Object(sup.prototype);prototype.constructor=sub;sub.prototype=prototype;}function EventTarget(){this.handlers={};}EventTarget.prototype={constructor:EventTarget,addHandler:function(type,handler){if(typeof this.handlers[type] =="undefined"){this.handlers[type]=[];}this.handlers[type].push(handler);},fire:function(event){if(!event.target){event.target=this;console.log(event);}if(this.handlers[event.type] instanceof Array){var handlers=this.handlers[event.type];for(var i=0;i<handlers.length;i++){handlers[i](event);}}},removeHandler:function(type,handler){if(this.handlers[type] instanceof Array){var handlers=this.handlers[type];for(var i=0;i<handlers.length;i++){if(handlers[i]===handler){break;}}handlers.splice(i,1);}}};function Person(name,age){EventTarget.call(this);this.name=name;this.age=age;}inherit(Person,EventTarget);Person.prototype.say=function(message){this.fire({type:"message",message:message});}Person.prototype.data=function(event,str){this.fire({type:'data',x:event.clientX,y:event.clientY,data:str});};Person.prototype.getna=function(arr){this.fire({type:'getna',getna:arr});}function hm(event){alert("message received: "+event.message);}function re(event){var ss=event;btn.onclick=function(event){var event=EventUtil.getEvent(event);var target=EventUtil.getTarget(event);alert(event.x+":"+event.y);console.info(ss.data);}}function getnameage(event){alert(event.getna);}var person=new Person('Nicholas',23);person.addHandler("message",hm);person.addHandler('data',re);person.say("Hi i am here");var btn=document.getElementById('mybtn');person.data('','dfd');person.addHandler('getna',getnameage);person.getna([person.name,person.age]);</script></body>
</html>