apply()方法

3.apply()方法數組 apply()方法有兩個參數,用做this的對和要傳遞給函數的參數數組。 function sayColor(sPrefix,sSuffix){     alert(sPrefix+this.color+sSuffix)    };    var obj=new Object();    obj.color="red";       sayColor.apply(obj
相關文章
相關標籤/搜索