Jquery 就绪函数约定
黑白
$(function(){
});
和
(function ($) {
//found this code in jquery uobtrusive ajax
}(JQuery));
第一个代码片段有什么区别只是文档准备好的简写。我不知道第二个代码片段:它的作用是什么以及它与第一个代码片段有何不同。
what is the difference b/w
$(function(){
});
and
(function ($) {
//found this code in jquery uobtrusive ajax
}(JQuery));
first code snippet is simply shorthand for document ready. i have no idea about second code snippet: what does it do and how does it differ from the first code snippet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第二个片段创建一个匿名函数并立即执行它,而无需等待任何内容加载。
它用于创建一个名为
$
的本地变量(参数),该变量(参数)引用jQuery
,即使有人调用jQuery.noConflict()
。它还隐藏了全局范围内函数中创建的内部变量。
The second snippet creates an anonymous function and executes it immediately, without waiting for anything to load.
It's used to create a local variable (parameter) named
$
that refers tojQuery
, even if someone callsjQuery.noConflict()
.It also hides internal variables created in the function from the global scope.