javascript 随机调用函数表达式(IIFE)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 随机调用函数表达式(IIFE)相关的知识,希望对你有一定的参考价值。

function mogla() {
  //do it
}

// an anonymous function
(function () { 
  //do it
});

// a self invoked anonymous function
// it will be executed immediately, when the interpreter will reach this line
(function () {
  //do it
})();
  
// a self invoked anonymous function with a parameter called "$"
// It means, that the interpreter will invoke this function immediately, 
// and will pass jQuery as parameter, which will be used inside the function as $.
var jQuery = 'I\'m not jQuery.';
(function ($) { 
  console.log($) 
})(jQuery);

以上是关于javascript 随机调用函数表达式(IIFE)的主要内容,如果未能解决你的问题,请参考以下文章

javascript 理解立即调用的函数表达式(IIFE)

PHP中的IIFE(立即调用函数表达式)?

JavaScript IIFE

JS-立即执行函数表达式(IIFE)

JS-立即执行函数表达式(IIFE)

立即调用的函数表达式(IIFE)