在$ .get ajax中添加函数之前

时间:2017-04-05 09:05:54

标签: jquery ajax wordpress

这是我的代码:

$.get(site_url+'/core/includes/manipulate_player.php?action=delete&userid='+userid+'&productid='+productid, function(html){
        console.log(html);
//some other code here
    });

我想在功能之前添加

beforeSend:function()
            {
            }

就像$.ajax()

一样

有人可以帮我怎么做吗?

1 个答案:

答案 0 :(得分:1)

您可以定义调用beforeSend函数并获取请求的函数。就像那样。

function getRequest(url, beforeSend) {
     beforeSend();

     $.get(url, function(response){
         console.log(response);
     });
}


getRequest('www.example.com?a=3', function() {
    console.log('function call before $.get send');
});