我的项目中有部分代码jQuery.extend(
{
    proxyReq: function(opt)
    {
        var defaults = 
        {
            url: "/jsbo_service/jsmss/jsmssProxy.do?r=" + Math.random(),
            timeout: 1000 * 60,
            type: "post",
            async: true,
            inModified: false
        };
        var param = $.extend(defaults, opt);
        $.ajax(param);
    }
});我的理解紫红色部分应该属于extend()函数的参数吧,我这样理解对不对?在其他地方,有许多 $.proxyReq(
    {
        data: paramData,
        success: getSuccess,
        error: getError
    });
在我看来$.proxyReq()应该是一个函数调用部分但是,我比较糊涂,$.proxyReq()分明是extend的一个参数,怎么能调用哦?