此错误表示JSLint是什么意思?以及如何重写?
Error: Problem at line 78 character 3: Move the invocation into the parens that contain the function:
})(jQuery);
Answers:
要通过JSLint的标准,需要这样编写:
}(jQuery));
尽管我认为特定标准有些主观。在我看来,两种方式都不错。
(function () {})()
对我来说更有意义,因为您包装了完整功能,然后调用它
(function () {}())
看起来您正在将函数调用的结果包装在括号中...