我需要嵌套函数的父函数名称。我正在使用 jquery ajaxComplete 方法,在那里我将获得外部函数名称:
$(document).ajaxComplete(function (e, xhr, settings){
// this shows me only the success function of the ajax call,
// but I need the outermost function
alert(settings.success.toString());
}
非常感谢您的支持!