1、call()和apply()的作用是改變this指向,差異是傳參列表不同(前者連續參數,後者為參數數組)
2、方法定義:
function.apply(thisObj[, argArray]) function.call(thisObj[, arg1[, arg2[, [,...argN]]]]);
特別地,當沒有傳遞參數時,function.call() #相當於執行這個function
3、實例:
##由於apply()和call()方法作用是一致的,因此這裡以call()為例,apply() 同理:
//定义一个Car的构造函数 function Car(name,height){ this.name=name; this.height=height; } function Maserati(name,age,height,width){ this.name=name; this.age=age; this.height=height; this.width=width; } 可以发现这里函数2包含了函数1的所有属性,即是继承的意思 因此函数2这里可以用call()方法改写成 function Maserati(name,age,height,width){ Car.call(this,name,age);//此处this就是指向Maserati,此时Maserati就拥有Car的所有属性和方法了。 this.height=height; this.width=width; } var a=new Maserati("maserati",23,188,98);得到以下結果:
以上是call(),apply()的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!