今天就跟大家聊聊有關(guān)JavaScript中Call和Apply函數(shù)的原理是什么,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
創(chuàng)新互聯(lián)建站-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比蕉嶺網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式蕉嶺網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋蕉嶺地區(qū)。費(fèi)用合理售后完善,10余年實(shí)體公司更值得信賴。
一、方法重用
使用 call() 方法,您可以編寫能夠在不同對象上使用的方法。
1、函數(shù)是對象方法
在 JavaScript 中,函數(shù)是對象的方法。
如果一個(gè)函數(shù)不是 JavaScript 對象的方法,那么它就是全局對象的函數(shù)(參見前一章)。
下面的例子創(chuàng)建了帶有三個(gè)屬性的對象(firstName、lastName、fullName)。
var person = { firstName:"Bill", lastName: "Gates", fullName: function () { return this.firstName + " " + this.lastName; } } person.fullName(); // 將返回 "Bill Gates"
fullName 屬性是一個(gè)方法。person 對象是該方法的擁有者。
fullName 屬性屬于 person 對象的方法。
二、call() 方法
call() 方法是預(yù)定義的 JavaScript 方法。
它可以用來調(diào)用所有者對象作為參數(shù)的方法。
通過 call(),您能夠使用屬于另一個(gè)對象的方法。
本例調(diào)用 person 的 fullName 方法,并用于 person1:
var person = { fullName: function() { return this.firstName + " " + this.lastName; } } var person1 = { firstName:"Bill", lastName: "Gates", } var person2 = { firstName:"Steve", lastName: "Jobs", } person.fullName.call(person1); // 將返回 "Bill Gates"
本例調(diào)用 person 的 fullName 方法,并用于 person2:
var person = { fullName: function() { return this.firstName + " " + this.lastName; } } var person1 = { firstName:"John", lastName: "Doe", } var person2 = { firstName:"Mary", lastName: "Doe", } person.fullName.call(person2); // 將返回 "Steve Jobs"
1、帶參數(shù)的 call() 方法
call() 方法可接受參數(shù):
var person = { fullName: function(city, country) { return this.firstName + " " + this.lastName + "," + city + "," + country; } } var person1 = { firstName:"Bill", lastName: "Gates" } person.fullName.call(person1, "Seattle", "USA");
三、 apply() 方法
apply() 方法與 call() 方法非常相似:
在本例中,person 的 fullName 方法被應(yīng)用到 person1:
var person = { fullName: function() { return this.firstName + " " + this.lastName; } } var person1 = { firstName: "Bill", lastName: "Gates", } person.fullName.apply(person1); // 將返回 "Bill Gates"
1、call() 和 apply() 之間的區(qū)別
不同之處是:
call() 方法分別接受參數(shù)。
apply() 方法接受數(shù)組形式的參數(shù)。
如果要使用數(shù)組而不是參數(shù)列表,則 apply() 方法非常方便。
2、帶參數(shù)的 apply() 方法
apply() 方法接受數(shù)組中的參數(shù):
var person = { fullName: function(city, country) { return this.firstName + " " + this.lastName + "," + city + "," + country; } } var person1 = { firstName:"John", lastName: "Doe" } person.fullName.apply(person1, ["Oslo", "Norway"]);
與 call() 方法對比:
var person = { fullName: function(city, country) { return this.firstName + " " + this.lastName + "," + city + "," + country; } } var person1 = { firstName:"John", lastName: "Doe" } person.fullName.call(person1, "Oslo", "Norway");
3、在數(shù)組上模擬 max 方法
您可以使用 Math.max() 方法找到(數(shù)字列表中的)最大數(shù)字:
Math.max(1,2,3); // 會返回 3
由于 JavaScript 數(shù)組沒有 max() 方法,因此您可以應(yīng)用 Math.max() 方法。
Math.max.apply(null, [1,2,3]); // 也會返回 3
第一個(gè)參數(shù)(null)無關(guān)緊要。在本例中未使用它。
這些例子會給出相同的結(jié)果:
Math.max.apply(Math, [1,2,3]); // 也會返回 3 Math.max.apply(" ", [1,2,3]); // 也會返回 3 Math.max.apply(0, [1,2,3]); // 也會返回 3
4、JavaScript 嚴(yán)格模式
在 JavaScript 嚴(yán)格模式下,如果 apply() 方法的第一個(gè)參數(shù)不是對象,則它將成為被調(diào)用函數(shù)的所有者(對象)。在“非嚴(yán)格”模式下,它成為全局對象。
1、能夠嵌入動(dòng)態(tài)文本于HTML頁面。2、對瀏覽器事件做出響應(yīng)。3、讀寫HTML元素。4、在數(shù)據(jù)被提交到服務(wù)器之前驗(yàn)證數(shù)據(jù)。5、檢測訪客的瀏覽器信息。6、控制cookies,包括創(chuàng)建和修改等。7、基于Node.js技術(shù)進(jìn)行服務(wù)器端編程。
看完上述內(nèi)容,你們對JavaScript中Call和Apply函數(shù)的原理是什么有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。