我不知道这段代码是什么

时间:2016-09-03 19:32:24

标签: javascript jquery function syntax

我一直在寻找和寻找各处,我不知道这段代码是什么。我从jQuery中删除它

( function( global, factory ) {

"use strict";

if ( typeof module === "object" && typeof module.exports === "object" ) {

    // For CommonJS and CommonJS-like environments where a proper `window`
    // is present, execute the factory and get jQuery.
    // For environments that do not have a `window` with a `document`
    // (such as Node.js), expose a factory as module.exports.
    // This accentuates the need for the creation of a real `window`.
    // e.g. var jQuery = require("jquery")(window);
    // See ticket #14549 for more info.
    module.exports = global.document ?
        factory( global, true ) :
        function( w ) {
            if ( !w.document ) {
                throw new Error( "jQuery requires a window with a document" );
            }
            return factory( w );
        };
} else {
    factory( global );
}

// Pass this if window is not defined yet
} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {...})

任何人都可以帮助我吗?

2 个答案:

答案 0 :(得分:1)

可以称为包装/自调用函数。但实际上它与功能没有什么不同。只是一个在定义上调用的简单函数 - 没有名称。因此,为什么在声明结束时会有一个直接传递的参数列表。

答案 1 :(得分:0)

如果你问的代码语法可能看起来很怪异,那就是所谓的“自我调用函数”。

这是一个立即被调用的函数,而不是声明其名称。只是调用它。