Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 bootstrap.js 代码文件的开头,他们有这个
!function($) {
这是什么意思?
如果您编写 this: function something() {something},它是一个函数的声明,但它不会调用该函数(您必须something()稍后运行)。
function something() {something}
something()
因此,要实际调用该函数,您需要执行类似(function(){})();..." !function($) {}" 之类的操作,而不是将整个函数包装在括号中。感叹号语法是编写它的捷径。“!” 将该行转换为返回的表达式true。
(function(){})();
!function($) {}
true