标签:
function Person(){} person.prototype.hello="hello"; person.prototype.sayHello=function(){ alert(this.hello); } function Child(){} child.prototype=new Person(); child.prototypr.word="keeny"; child.prototype.sayWord=(){ alert(this.word); } var c=new Child(); c.sayHello; c.sayWord;
call的参数:第一个参数this值,第二个参数:参数直接传递给函数
function sun(){ }
apply的参数:第一个参数是在其中运行函数的作用域,第二个参数是参数数组(可以是Array的实例,也可以是arguments对象),
标签:
原文地址:http://www.cnblogs.com/lulu-front/p/4946403.html