(1)标准写法

  1. (function (window, document, undefined) {
  2. //
  3. })(window, document);

(2)作用域Scope 
JavaScript有function作用域,所以function首先创建一个私有的作用域,在执行的时候都会创建一个执行上下文。

  1. (function (window, document, undefined) {
  2. var name = '张三';
  3. })(window, document);
  4. console.log(name); // 因为作用域不同,这里的name未定义。

调用方法一:

  1. var logMyName = function (name) {
  2. console.log(name);
  3. };
  4. logMyName('李四');

调用方法二:

  1. var logMyName = (function (name) {
  2. console.log(name);
  3. })('王五');

需要注意的是需要用括号把函数内容括起来:

  1. function () {
  2. // ...
  3. })();

没有括号的话会报语法错:

  1. function () {
  2. // ...
  3. }();

也可以强制JavaScript识别代码(一般很少这么用):

  1. !function () {
  2. // ...
  3. }();
  4. +function () {
  5. // ...
  6. }();
  7. -function () {
  8. // ...
  9. }();
  10. ~function () {
  11. // ...
  12. }();

比如:

  1. var a = !function () {
  2. return true;
  3. }();
  4. console.log(a); // 打印输出 false
  5. var b = (function () {
  6. return true;
  7. })();
  8. console.log(b); // 打印输出 true

(3)参数Arguments

  • 介绍IIFE
  • IIFE的性能
  • 使用IIFE的好处
  • IIFE最佳实践
  • jQuery优化

Bootstrap源码(具体请看《Bootstrap源码解析》)和其他jQuery插件经常看到如下的写法:

  1. +function ($) {
  2. }(window.jQuery);

这种写法称为:

IIFE (Imdiately Invoked Function Expression 立即执行的函数表达式)。

一步步来分析这段代码。

先弄清函数表达式(function expression)和 函数声明(function declaration)的区别:

函数表达式  Function Expression - var test = function() {};

函数申明     Function Declaration - function test() {};

函数表达式中的函数可以为匿名函数,也可以有函数名,但是该函数实际上不能直接使用,只能通过表达式左边的变量 a 来调用。

  1. var a = function(){
  2. alert('Function expression');
  3. }
  4. var b = new a();

函数声明时必须有函数名。

  1. function a(){
  2. alert('Function declaration');
  3. }
  4. a();

这是一个匿名函数

  1. function () {
  2. }

你也许注意到匿名函数在console下会报错。console的执行和报错如下:

function(){}

 
SyntaxError: Unexpected token (

通过一元操作符+变成了函数表达式。也可以使用 - ~ !等其他一元运算符或者括号,目的是为了引导解析器,指明运算符附近是一个表达式。以下是三种经典方式 :

  1. +function () {
  2. };
  3. (function () {
  4. });
  5. void function() {
  6. };

函数表达式通过 末尾的() 来调用并运行。就是一个IIFE。

  1. +function () {
  2. }();
  3. (funtion () {
  4. })();

代码性能

运算符:+加-减!逻辑非~位取反,返回NaN(Not A Number)。

“()”组运算符:返回表达式的执行结果undefined。

void:按运算符结合语句执行,返回 undefined。
这几种的性能对比结果:

可见+性能最差(在Firefox下差距更明显),其他几种都差不多。不过IIFE只执行一遍,对js执行效率的影响特别小,使用哪种还是看个人爱好。

传参,为了避免$与其他库或者模板申明冲突,window.jQuery 作为参数传递。

  1. +function (x) {
  2. console.log(x);
  3. }(3);
  4. +function ($) {
  5. }(window.jQuery);

使用IIFE的好处

总结有4点:提升性能、有利于压缩、避免冲突、依赖加载

1、减少作用域查找。使用IIFE的一个微小的性能优势是通过匿名函数的参数传递常用全局对象window、document、jQuery,在作用域内引用这些全局对象。JavaScript解释器首先在作用域内查找属性,然后一直沿着链向上查找,直到全局范围。将全局对象放在IIFE作用域内提升js解释器的查找速度和性能。

传递全局对象到IIFE的一段代码示例:

  1. // Anonymous function that has three arguments
  2. function(window, document, $) {
  3. // You can now reference the window, document, and jQuery objects in a local scope
  4. }(window, document, window.jQuery); // The global window, document, and jQuery objects are passed into the anonymous function

2、有利于压缩。另一个微小的优势是有利于代码压缩。既然通过参数传递了这些全局对象,压缩的时候可以将这些全局对象匿名为一个字符的变量名(只要这个字符没有被其他变量使用过)。如果上面的代码压缩后会变成这样:

  1. // Anonymous function that has three arguments
  2. function(w, d, $) {
  3. // You can now reference the window, document, and jQuery objects in a local scope
  4. }(window, document, window.jQuery); // The global window, document, and jQuery objects are passed into the anonymous function

3、避免全局命名冲突。当使用jQuery的时候,全局的window.jQuery对象 作为一个参数传递给$,在匿名函数内部你再也不需要担心$和其他库或者模板申明冲突。 正如James padolsey所说:

An IIFE protects a module’s scope from the environment in which it is placed.

4、通过传参的方式,可以灵活的加载第三方插件。(当然使用模块化加载更好,这里不考虑。)举个例子,如果a页面需要使用KindEditor,a.html引入kindeditor.js 和 a.js

你可能会这么写 a.js:

  1. $(function() {
  2. var editor
  3. KindEditor.ready(function(K) {
  4. editor = K.create('textarea[data-name="kindeditor"]', {
  5. resizeType : 1
  6. })
  7. })
  8. })

b页面不需要使用Kindeditor,没有引入kindeditor.js。但是在合并JS代码后,b页面也会执行a.js中的代码,页面报错Uncaught ReferenceError: KindEditor is not defined。也就是b页面执行了KindEditor,难道所有页面都要加载Kindeditor源文件?

可以这么修改a.js,将KindEditor变量参数化,通过给立即执行的函数表示式的参数赋值,那么其他页面都不需要加载Kindeditor源文件

  1. +function( KindEditor){
  2. var editor
  3. if(KindEditor){
  4. KindEditor.ready(function(K) {
  5. editor = K.create('textarea[data-name="kindeditor"]', {
  6. resizeType : 1
  7. })
  8. })
  9. }
  10. }(KindEditor || undefined)

IIFE最佳实践

反对使用IIFE的其中一个理由是可读性差,如果你有大量的JavaScript代码都在一段IIFE里,要是想查找IIFE传递的实际参数值,必须要滚动到代码最后。幸运的是,你可以使用一个更可读的模式:

  1. (function (library) {
  2. // Calls the second IIFE and locally passes in the global jQuery, window, and document objects
  3. library(window, document, window.jQuery);
  4. }
  5. // Locally scoped parameters
  6. (function (window, document, $) {
  7. // Library code goes here
  8. }));

这种IIFE模式清晰的展示了传递了哪些全局对象到你的IIFE中,不需要滚动到长文档的最后。

jQuery优化

一段看上去写法有点像的代码。大部分项目用这段代码做作用域,这段代码会在DOM加载完成时初始化jQuery代码。

  1. $(function(){
  2. });

这种写法等同于

  1. $(document).ready(function(){
  2. // 在DOM加载完成时初始化jQuery代码。
  3. });
区别于

  1. $(window).load(function(){
  2. // 在图片等媒体文件加载完成时,初始化jQuery代码。
  3. });

结合IIFE的最佳实践,更好的写法是,立即执行document ready

  1. +function ($) {
  2. $(function(){
  3. })
  4. }(window.jQuery)

最佳实践

  1. // IIFE - Immediately Invoked Function Expression
  2. +function(yourcode) {
  3. // The global jQuery object is passed as a parameter
  4. yourcode(window.jQuery, window, document);
  5. }(function($, window, document) {
  6. // The $ is now locally scoped
  7. // Listen for the jQuery ready event on the document
  8. $(function() {
  9. // The DOM is ready!
  10. }));

具体请看工程师,请优化你的代码

其他

在Bootstrap和其他插件中经常看到如下写法:

  1. +function ($) { "use strict";
  2. }(window.jQuery);

 关于字符串"use strict";请看严格模式

传递参数给IIFE

  1. (function (window) {
  2. // 这里可以调用到window
  3. })(window);
  4. (function (window, document) {
  5. // 这里可以调用到window和document
  6. })(window, document);

undefined参数 
在ECMAScript 3中undefined是mutable的,这意味着可以给undefined赋值,而在ECMASCript 5的strict模式('use strict';)下是不可以的,解析式时会报语法错。

所以为了保护IIFE的变量需要undefined参数:

  1. (function (window, document, undefined) {
  2. // ...
  3. })(window, document);

即使有人给undefined赋值也没有关系:

  1. undefined = true;
  2. (function (window, document, undefined) {
  3. // undefined指向的还是一个本地的undefined变量
  4. })(window, document);

(4)代码压缩Minifying

  1. (function (window, document, undefined) {
  2. console.log(window); // window对象
  3. })(window, document);

代码压缩后,undefined的参数不再存在,但是由于 (window, document); 的调用没有传递第三个参数,所有c依然是一个本地undefined变量,所有参数中undefined的名字是无所谓什么的,只需要知道他指向的是一个undefined变量。

  1. (function (a, b, c) {
  2. console.log(a); // window对象
  3. })(window, document);

除undefined变量外,其他的所有希望只在函数内部有效的变量都可以通过参数传递进去,比如以下的jQuery对象。

    1. (function ($, window, document, undefined) {
    2. // 使用 $ 指向 jQuery,比如:
    3. // $(document).addClass('test');
    4. })(jQuery, window, document);
    5. (function (a, b, c, d) {
    6. // 代码会被压缩为:
    7. // a(c).addClass('test');
    8. })(jQuery, window, document);

JavaScript的IIFE(即时执行方法)的更多相关文章

  1. 在WebBrowser中执行javascript脚本的几种方法整理(execScript/InvokeScript/NavigateScript) 附完整源码

    [实例简介] 涵盖了几种常用的 webBrowser执行javascript的方法,详见示例截图以及代码 [实例截图] [核心代码] execScript方式: 1 2 3 4 5 6 7 8 9 1 ...

  2. javascript实现每秒执行一次的方法

    javascript实现每秒执行一次的方法 <pre> i=0; function showzhandou() { $('.zhandouresult p').eq(i).fadeIn() ...

  3. 【JavaScript专题】--- 立即执行函数表达式

    一 什么是立即执行函数表达式 立即执行函数表达式,其实也可以叫初始化函数表达式,英文名:IIFE,immediately-inovked-function expression.立即执行函数表达式就是 ...

  4. javascript中数组常用的方法

    在JavaScript中,数组可以使用Array构造函数来创建,或使用[]快速创建,这也是首选的方法.数组是继承自Object的原型,并且他对typeof没有特殊的返回值,他只返回'object'. ...

  5. [转]Javascript中的自执行函数表达式

    [转]Javascript中的自执行函数表达式 本文转载自:http://www.ghugo.com/javascript-auto-run-function/ 以下是正文: Posted on 20 ...

  6. 深入理解javascript中的立即执行函数(function(){…})()

    投稿:junjie 字体:[增加 减小] 类型:转载 时间:2014-06-12 我要评论 这篇文章主要介绍了深入理解javascript中的立即执行函数,立即执行函数也叫立即调用函数,通常它的写法是 ...

  7. Jquery中$(document).ready()与传统JavaScript中的window.onload方法的区别(2016/8/3)

    Jquery中$(document).ready()的作用类似于传统JavaScript中的window.onload方法,不过与window.onload方法还是有区别的. 1.执行时间       ...

  8. ASP.NET CS文件中输出JavaScript脚本的3种方法以及区别

    Response.Write 与   Page.ClientScript.RegisterStartupScript 与 Page.ClientScript.RegisterClientScriptB ...

  9. JavaScript之call()和apply()方法详解

    简介:apply()和call()都是属于Function.prototype的一个方法属性,它是JavaScript引擎内在实现的方法,因为属于Function.prototype,所以每个Func ...

随机推荐

  1. 修改ftp密码

    1.运行cmd2.在DOS窗口中输入FTP 127.0.0.13.出现用户名输入提示“user”,键入用户名,按回车4.出现输入密码提示:“Password”,键入密码后按回车登录到服务器中5.在ft ...

  2. SqlSever基础 lower函数 返回字符串的小写形式

    镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ ...

  3. WINCE6.0组件选择说明

    WINCE6.0组件选择说明 图1 RAS/PPP组件前面的√标识表示我们手动选择,TAPI2.0前面的■标识表示选组件时根据依赖关系自动选择的,PPPoE前面的□标识组件没有选择.

  4. 三HttpServletResponse对象介绍(1)

    转载自http://www.cnblogs.com/xdp-gacl/p/3789624.html Web服务器收到客户端的http请求,会针对每一次请求,分别创建一个用于代表请求的request对象 ...

  5. oracle数据库导入导出dmp文件oracle命令

    在控制台下导入imp scott/密码@orcl file=文件路径 full=Y 导出 整个数据库TEST 用户名system  密码1234 exp system/1234@TEST file=文 ...

  6. 【转载】linux内核笔记之高端内存映射

    原文:linux内核笔记之高端内存映射 在32位的系统上,内核使用第3GB~第4GB的线性地址空间,共1GB大小.内核将其中的前896MB与物理内存的0~896MB进行直接映射,即线性映射,将剩余的1 ...

  7. JS中 window.location 与window.location.href的区别

    疑惑:window.location='url'  与window.lcoation.href='url'效果一样,都会跳转到新页面,区别在哪?查得的资料如下: 1:window.location是页 ...

  8. deep-learning-frameworks

    From: http://venturebeat.com/2015/11/14/deep-learning-frameworks/ Here’s a rundown of some other not ...

  9. Django serializers 序列化 rest_framework

    参考官方文档1(你懂的):http://www.django-rest-framework.org/api-guide/serializers/ 参考官方文档2(你懂的):http://www.dja ...

  10. Berkeley DB的常见API简单分析

    1.用来存储类信息的数据库不要求能够存储重复的关键字    例:    dbConfig.setSortedDuplicates(false);2.DatabaseEntrt能够支持任何能够转化为by ...