這篇文章主要介紹了如何調(diào)用JS函數(shù)的相關知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇如何調(diào)用JS函數(shù)文章都會有所收獲,下面我們一起來看看吧。
五家渠網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)公司!從網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、APP開發(fā)、成都響應式網(wǎng)站建設公司等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)公司從2013年成立到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設就選創(chuàng)新互聯(lián)公司。
使用該call()方法,您可以編寫可用于不同對象的方法。
在JavaScript 中,所有函數(shù)都是對象方法。
如果函數(shù)不是 JavaScript 對象的方法,則它是全局對象的函數(shù)。
下面的示例創(chuàng)建一個具有 3 個屬性的對象,firstName、lastName、fullName。
例子:
const myObject = { firstName:"John", lastName: "Doe", fullName: function () { return this.firstName + " " + this.lastName; } }// This will return "John Doe":myObject.fullName();
在函數(shù)定義中,this指的是函數(shù)的“所有者”。
在上面的示例中,this是“擁有” fullName函數(shù)的person 對象。
換句話說,this.firstName表示這個對象的firstName 屬性。
該call()方法是一個預定義的 JavaScript 方法。
它可用于調(diào)用(調(diào)用)以所有者對象作為參數(shù)(參數(shù))的方法。
使用call(),一個對象可以使用屬于另一個對象的方法。
此示例調(diào)用person的fullName方法,在person1上使用它 :
例子:
const person = { fullName: function() { return this.firstName + " " + this.lastName; } }const person1 = { firstName:"John", lastName: "Doe"}const person2 = { firstName:"Mary", lastName: "Doe"}// This will return "John Doe":person.fullName.call(person1);
此示例調(diào)用person的fullName方法,在person2上使用它 :
const person = { fullName: function() { return this.firstName + " " + this.lastName; } }const person1 = { firstName:"John", lastName: "Doe"}const person2 = { firstName:"Mary", lastName: "Doe"}// This will return "Mary Doe"person.fullName.call(person2);
該call()方法可以接受參數(shù):
例子
const person = { fullName: function(city, country) { return this.firstName + " " + this.lastName + "," + city + "," + country; } }const person1 = { firstName:"John", lastName: "Doe"} person.fullName.call(person1, "Oslo", "Norway");
關于“如何調(diào)用JS函數(shù)”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“如何調(diào)用JS函數(shù)”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。