JavaScript based on Ajax callback function pass parameter instance Analysis _javascript technique

Source: Internet
Author: User

The examples in this article describe JavaScript's method of passing parameters based on Ajax callback functions. Share to everyone for your reference, specific as follows:

This paper introduces the four methods of parameter passing between HTML pages in JavaScript, and makes an analysis of Ajax parameter passing.

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

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, it can be a function type.

I hope this article will help you with JavaScript programming.

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.