我试图用jquery ajax调用一个服务,它被adblockplus(abp)阻止,因为该服务有" ads"作为子域,问题是当abp阻止此调用时,会杀死我的所有代码,而不是转到错误处理程序或转到try catch异常。
有什么方法可以阻止abp杀死我的代码?我的代码如下:
try{
$.ajax({
url:"ads.service.com",
dataType:"jsonp",
success: function(){
//something here
},
error: function(){
//something else here
}
})
}catch(err){
//something else here
}