The Ajax return value to the upper function method.

Source: Internet
Author: User

function Load_val (callback) {//define a callback function$.getjson ('test.php', function (DAT) {callback (data);//returns the returned result as a parameter    });} Load_val (function (data) {alert (data);//Here you can get the value}); //Otherwise, you need to do this with synchronous Ajax.function Load_val2 () {varresult; $.ajax ({dataType:'JSON', URL:'test.php',        Async:false,//here to choose the async to False, then this program executes here will pause, wait for//data loading is complete before continuingsuccess:function (data) {result=data;    }    }); returnresult;} vardata = Load_val ();//you can get the data directly here .

The Ajax return value to the upper function method.

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.