JS 객체가 함수에 얽매임


  
  
  
  
  1. function person(name){  
  2.     this.name=name;  
  3.     //    
  4.     this.show=show;    
  5. }  
  6. function show(){  
  7.     alert("Hello :"+this.name);  
  8. }  
  9.  
  10. person.author="OBJECT";  
  11. person.poem="Everything has its object, things are empty...";  
  12. person.Sing=function(){  
  13.     alert(person.author+" -> "+person.poem);  
  14. }  
  15. person.prototype=person   //  
  16.  
  17. person.prototype.marry=function(){  
  18.     alert(this.name+" have married")  
  19. }  
  20. var p=new person(" ");  
  21. p.Sing();      
  22. p.marry();   //   

좋은 웹페이지 즐겨찾기