首页 > 编程语言 > 详细

javascript Call方法 的使用

时间:2014-09-21 17:49:12      阅读:270      评论:0      收藏:0      [点我收藏+]

 call 的意思是把 animal 的方法放到cat上执行,原来cat是没有showName() 方法,现在是把animal 的showName()方法放到 cat上来执行,所以this.name 应该是 Cat



function Animal(){    
    this.name = "Animal";    
    this.showName = function(){    
        alert(this.name);    
    }    ;
}    
 
function Cat(){    
    this.name = "Cat";    
}    
   
var animal = new Animal();    
var cat = new Cat();    
animal.showName.call(cat,",");   

javascript Call方法 的使用

原文:http://blog.csdn.net/u010716763/article/details/39453177

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!