我试图了解js库的工作原理,更具体地说是http://toopay.github.io/bootstrap-markdown/。
整个js文件包含在这个函数中:
!function ($) {
}(window.jQuery);
这是做什么的,以及如何从图书馆外再次调用它?
答案 0 :(得分:1)
它创建一个函数然后立即调用它。它之所以如此,所以它所做的所有变量都不是全局变量,因为它们将在函数内部。 The !
is just to avoid causing problems when it's concatenated with other scripts and to save space.
你不能自己打电话,也不能打电话。