如何将函数赋值给变量jquery

时间:2018-03-18 11:45:53

标签: javascript jquery ajax function

上帝那天,我在stackoverflow中从thislink复制了这个示例,它运行正常,我现在如何把它变成一个变量,我可以在我的项目的其余部分使用它,因为我已经在下面的exapmle ,它不会给我函数内部的值,它写的是未定义的。

function something(callback){

$.ajax({
         type: "GET",
         contentType: "application/x-www-form-urlencoded",
        url: "http:url.com",
        dataType: 'json',
        success: 

            callback
            // console.log(data);
        //  console.log(JSON.parse(data));

            // window.location.replace("mainkedaabuild.html"+"?#"+data );
        ,
        error: function()
        {
             $('#output').html("Unable to connect");
            // window.location.replace("404kedaa.html");
        }


    });

};


    var Blue = something(function (data) {


data; return data;

})

    console.log(Blue);

0 个答案:

没有答案