JavaScript函数评估自己并在同一时间调用自己

这个问题在这里已经有了答案:

  • JavaScript中的(function(){})()构造是什么? 21个答案

  • Google“立即调用函数表达式”或“IIFE”。

    一般的语法如下所示:

    (function(){
    // do something here
    })():
    

    有时你会看到传入的参数。 它基本上用来包装你的代码,所以你的任何变量都不会泄漏到全局名称空间中。

    链接地址: http://www.djcxy.com/p/80925.html

    上一篇: JavaScript function evaluating itself and calling itself at the same time

    下一篇: Why is there back slash in this piece of code?