Javascript Ajax callback function passing parameters

Source: Internet
Author: User

In JavaScript, especially in Ajax, the callback function is often a function name, there is no place to put parameters, such as the following Ajax code, after success will call the callback function callback, but callback is a parameter, how to pass the parameters in it?

             var callback = function (p1) {         //do something      }      var ajaxsetting = {            Url:url,            timeout:me.timeout,            Type:method,            contentType: "Application/json",            dataType: "JSON",            Cache:false,            Async:async,            Data:p_data,            success:callback            },            error:function (P_request, P_status, P_err) {            }        };

The workaround is to use anonymous functions:

Success:function (Result) {

Callback (p1_actual);

}


Where Pa_actual is a known parameter and can be a function type.

Javascript Ajax callback function passing parameters

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.