下面$(document).的简写准备好了吗?

(function($){

//some code

})(jQuery);

我看到这个模式被使用了很多次,但我找不到任何参考资料。如果它是$(document).ready()的简写,是否有什么特别的原因它可能不起作用?在我的测试中,它似乎总是在就绪事件之前发射。


当前回答

ready的多框架安全简写是:

jQuery(function($, undefined) {
    // $ is guaranteed to be short for jQuery in this scope
    // undefined is provided because it could have been overwritten elsewhere
});

这是因为jQuery不是唯一使用$和未定义变量的框架

其他回答

这些特定的行是jQuery插件的常用包装:

"...为了确保你的插件不会与其他可能使用美元符号的库冲突,最好将jQuery传递给一个自执行函数(闭包),将它映射到美元符号,这样它就不会被其他库在它的执行范围内覆盖。”

(function( $ ){
  $.fn.myPlugin = function() {
    // Do your awesome plugin stuff here
  };
})( jQuery );

从http://docs.jquery.com/Plugins/Authoring

ready的多框架安全简写是:

jQuery(function($, undefined) {
    // $ is guaranteed to be short for jQuery in this scope
    // undefined is provided because it could have been overwritten elsewhere
});

这是因为jQuery不是唯一使用$和未定义变量的框架

正确的简写是这样的:

$(function() {
    // this behaves as if within document.ready
});

你发布的代码…

(function($){

//some code

})(jQuery);

创建一个匿名函数,并立即执行它,并将jQuery作为参数$传入。因为$已经是jQuery的别名了,所以它所做的就是将函数中的代码像正常的一样执行。: D

这不是$(document).ready()的简写。

您发布的代码包含内部代码,并在不污染全局名称空间的情况下将jQuery作为$可用。当你想在一个页面上同时使用prototype和jQuery时,可以使用这个选项。

记录在这里:http://learn.jquery.com/using-jquery-core/avoid-conflicts-other-libraries/#use-an-immediately-invoked-function-expression

更短的变体是使用

$(()=>{

});

其中$代表jQuery,()=>{}是所谓的“箭头函数”,从闭包继承这个。(在这里你可能会用window而不是document)