调用栈,很明显可以看到 jquery 的调用:

image.png

源码特征:

Ajax: {
    PostAPI: function(e, t, r, a) {
        if (!e)
            return "";
        var n = window.location.protocol + "//" + window.location.host;
        0 < n.toLowerCase().indexOf("localhost") && (n = _DevHost),
        "function" != typeof r && (r = function(e) {}
        ),
        "function" != typeof a && (a = function(e) {}
        ),
        $.ajax({
            url: n + "/API/GetData.ashx",
            data: t + "&MethodName=" + e,
            type: "POST",
            dataType: "text",
            timeout: 3e4,
            success: function(e, t, n) {
                try {
                    1 == (e = "{" == e[0] ? JSON.parse(e) : JSON.parse(webInstace.shell(e))).Status || 200 == e.Code ? r(e.Data) : 200 == e.code ? r(e.data) : a(e.Msg)
                } catch (e) {
                    a(e)
                }
            },
            error: function(e, t, n) {
                console.log(t),
                a(t)
            }
        })
    },

jquery 框架的 resp 处理的位置在 success:function() 这个函数里面,遇到 jquery 框架且有返回值加密的时候,可以来这里找。