这是我的代码:
$.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()
有人可以帮我怎么做吗?
答案 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');
});