"JS plugin advanced" JS in the call () and apply () method in detail

Source: Internet
Author: User

The call () and apply () methods in JS

1. Method definition

Call Method:
Syntax: Call ([thisobj[,arg1[, arg2[, [,. ArgN]]])
Definition: Invokes one method of an object, replacing the current object with another object.
Description
The call method can be used to invoke a method in place of another object. The call method can change the object context of a function from the initial context to a new object specified by Thisobj.
If the Thisobj parameter is not provided, then the Global object is used as the thisobj.

Apply method:
Syntax: Apply ([Thisobj[,argarray]])
Definition: A method of applying an object that replaces the current object with another object.
Description
If Argarray is not a valid array or is not a arguments object, it will result in a TypeError.
If none of the Argarray and Thisobj parameters are provided, then the Global object is used as a thisobj and cannot be passed any parameters.

2. Common examples

A

Java code
    1. function Add (A, B)
    2. {
    3. alert (A+B);
    4. }
    5. function Sub (A, b)
    6. {
    7. Alert (A-B);
    8. }
    9. Add.call (Sub,3,1);

The meaning of this example is to replace sub,add.call (sub,3,1) = = Add (3,1) with add, so the result is: alert (4); Note: The function in JS is actually an object, and the function name is a reference to a function object.

B

Java code
  1. function Animal () {
  2. this.name = "Animal";
  3. this.showname = function () {
  4. Alert (this.name);
  5. }
  6. }
  7. function Cat () {
  8. this.name = "Cat";
  9. }
  10. var animal = new Animal ();
  11. var cat = New Cat ();
  12. Using the call or Apply method, the ShowName () method that originally belonged to the animal object is given to the object cat.
  13. The input result is "Cat"
  14. Animal.showName.call (Cat,",");
  15. Animal.showName.apply (cat,[]);

Call means to put the animal method on the cat, the original cat is no ShowName () method, now is to put animal showname () method on the cat to execute, so this.name should be cat

C. Implementing inheritance

Java code
  1. function Animal (name) {
  2. this.name = name;
  3. this.showname = function () {
  4. Alert (this.name);
  5. }
  6. }
  7. function Cat (name) {
  8. Animal.call (this, name);
  9. }
  10. var cat = New Cat ("Black cat");
  11. Cat.showname ();

Animal.call (this) means that the Animal object is used instead of the this object, so there is no Animal of all the properties and methods in Cat, and the Cat object can directly invoke the Animal method and properties.

D, multiple inheritance

Java code
  1. function Class10 ()
  2. {
  3. this.showsub = function (A, b)
  4. {
  5. Alert (A-B);
  6. }
  7. }
  8. function Class11 ()
  9. {
  10. This.showadd = function (A, b)
  11. {
  12. alert (A+B);
  13. }
  14. }
  15. function Class2 ()
  16. {
  17. Class10.call (this);
  18. Class11.call (this);
  19. }

It's easy to implement multiple inheritance with two call
Of course, JS inheritance There are other methods, such as the use of prototype chain, this is not part of the scope of this article, just here to illustrate the use of call. Said call, of course, and apply, these two methods are basically a meaning, the difference is that the second parameter of call can be any type, and the second argument of apply must be an array, or it can be arguments
and Callee,caller.

Example Source: http://xiaofeizm55333.iteye.com/blog/80913

http://www.iteye.com/topic/599108 and reply.

"JS plugin advanced" JS in the call () and apply () method in detail

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.