首頁 >web前端 >js教程 >call(),apply()的用法

call(),apply()的用法

一个新手
一个新手原創
2017-10-12 10:02:081249瀏覽

1call()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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn