我不知道这个代码是什么

问题描述 投票:0回答:2

我到处找呀找呀,我不知道这段代码叫什么。我从 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 ) {...})

有人可以帮我吗?

javascript jquery function syntax iife
2个回答
2
投票

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


0
投票

如果您询问的代码语法对您来说可能看起来很奇怪,这就是所谓的“自调用函数”。

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

© www.soinside.com 2019 - 2024. All rights reserved.