JavaScript Basics callback function

Source: Internet
Author: User

Simply put, the callback function: that is, the function that will be executed.

(1) Definition of callback function

function Add (X,Y,FN) {        /        * * this.x  this.y: definition        of global variable that belongs to the Add Class * / This        . x=x| | 1 ;         this. y=y| | 1 ;         if (FN) {     /* determines if there is a callback function, and some words execute the incoming function (incoming parameter)*            /FN (this. x+  This . y);        }    }

(2) Call of callback function, usually anonymous function, with return value

  Add (1,2, function (v) {//) The callback function has        a return value if(v>0) {            alert (  "result>0")        }else{            alert ( " result<0 " )        }    })

Summary: The callback function will automatically return the value, when the call will be the anonymous function as a parameter, as the formal parameters of the accepted function, at this time equivalent to become the anonymous function to perform all the rights of the agent, after execution will use the return value.

JavaScript Basics callback function

Related Article

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.