Home > Web Front-end > JS Tutorial > body text

The difference between Javascript call and apply and how to use it_Basic knowledge

WBOY
Release: 2016-05-16 17:15:20
Original
787 people have browsed it

1. Definition of method
call method:
Syntax: fun.call(thisArg[, arg1[, arg2[, ...]]])
Definition: Call a method on an object to replace the current object with another object.
Note:
The call method can be used to call a method instead of another object. The call method changes the object context of a function from the original context to the new object specified by thisArg.
If no thisArg parameter is provided, the Global object is used as thisArg.

apply method:
Syntax: fun.apply(thisArg[, argsArray])
Definition: Apply a method of an object and replace the current object with another object.
Note:
If argArray is not a valid array or is not an arguments object, a TypeError will be caused.
If neither argArray nor thisArg is provided, the Global object will be used as thisArg and no parameters can be passed.

2. The difference between the two
The basic difference between the two methods is that the parameters are passed differently
2.1. Call method:

Copy Code The code is as follows:

function Product(name, price) {
this.name = name;
this.price = price;
if (price < 0)
throw RangeError('Cannot create product "' name '" with a negative price');
return this;
}

function Food(name, price) {
Product.call(this, name, price);
this.category = 'food';
}
Food.prototype = new Product( );

function Toy(name, price) {
Product.call(this, name, price);
this.category = 'toy';
}
Toy.prototype = new Product( );

var cheese = new Food('feta', 5);
var fun = new Toy('robot', 40);


2.2. apply method:
Copy code The code is as follows:

function Product(name, price) {
this.name = name ;
this.price = price;
if (price < 0)
throw RangeError('Cannot create product "' name '" with a negative price');
return this;
}

function Food(name, price) {
Product.apply(this, arguments);
this.category = 'food';
}
Food.prototype = new Product();

function Toy(name, price) {
Product.apply(this, arguments);
this.category = 'toy';
}
Toy.prototype = new Product();

var cheese = new Food('feta', 5);
var fun = new Toy('robot', 40);


3. Examples of action

3.1. Class inheritance

Copy code The code is as follows:

function Person(name ,age){
this.name = name;
this.age=age;
this.alertName = function(){
alert(this.name);
}
this.alertAge = function(){
alert(this.age);
}
}

function webDever(name,age,sex){
Person.call(this,name,age);
this.sex=sex;
this.alertSex = function(){
alert(this.sex);
}
}

var test= new webDever("Design Hive",24,"Male");
test.alertName();//Design Hive
test.alertAge();//24
test .alertSex();//Male


3.2, callback function
Copy code The code is as follows:

function Album(id, title, owner_id) {
this.id = id;
this.name = title;
this.owner_id = owner_id;
} ;
Album.prototype.get_owner = function (callback) {
var self = this;
$.get('/owners/' this.owner_id, function (data) {
callback && callback .call(self, data.name);
});
};
var album = new Album(1, 'Design Hive', 2);
album.get_owner(function (owner ) {
alert('The album' this.name ' belongs to ' owner);
});
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template