一个奇怪的语法错误

为什么报 Uncaught TypeError: console.log(...) is not a function?而另两种方式可以

var x = {
        fn: function () {
            console.log(this)
//            !function () {
//                console.log(this)
//            }();//正确
            (function () {
                console.log(this);
            })();//Uncaught TypeError: console.log(...) is not a function
        }
    };

    (function () {
        console.log(this);
    })();//正确

    x.fn()
阅读 3.6k
6 个回答

因为第三行的 console.log(this) 没有加分号

可以简单的运行以下代码,会报同样的错误:

console.log(1)(2);
// Uncaught TypeError: console.log(...) is not a function
(function () {
                console.log(this);
            })();

function ()中间的空格去掉和在上面的console 加;

第三行少了分号,导致。

console.log(this)(function () {
    console.log(this);
})();

你把你的写法压缩了看就很明白了、圆括号的多重含义由于没写分号被误解了

新手上路,请多包涵
var x = {
    fn: function () {
        console.log(this)(function () {
            console.log(this);
        })();
    }
};

x.fn();

分号还是不要省,最佳规范都是前辈们的血泪教训。

要么不要省略分号
要么写自动执行函数的时候在其前面加!、;、+、-等符号,以标示这是新的一行

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题