对于函数(function($){})(),我看到里面有jQuery这个词

For the function (function($){})(), I#39;ve seen it with the word jQuery in it, why is that?(对于函数(function($){})(),我看到里面有jQuery这个词,这是为什么呢?)
本文介绍了对于函数(function($){})(),我看到里面有jQuery这个词,这是为什么呢?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

对于函数(function($){})(),我看到里面有jQuery这个词,这是为什么呢?

For the function (function($){})(), I've seen it with the word jQuery in it, why is that?

我已阅读此页面 Javascript:为什么 jQuery 会这样做:(function(){ ...});,它是如何工作的? 但它没有说明这样的示例:

I have read this page Javascript: why does jQuery do this: (function(){ ...});, and how does it work? but it didnt tell about an example like this:

(function($){})(jQuery);

括号中的那个jquery是做什么的?如果括号本身已经调用了函数,那我们为什么需要那个 jQuery 呢?

What does that jquery in the parenthesis do? If the parenthesis by itself already self calls the function then why do we need that jQuery in there?

推荐答案

是一个简单的函数调用,jQuery对象作为参数发送给匿名函数,例如:

Is a simple function invocation, the jQuery object is sent as an argument to the anonymous function, e.g.:

(function (foo) {
  alert(foo); // alerts "hello"
})("hello");

这是定义插件的常用模式,基本上允许您在匿名函数范围内将jQuery对象引用为$,即使jQuery运行在noConflict 模式.

It's a common pattern to define plugins, basically permits you to reference the jQuery object as $ in the scope of the anonymous function, even if jQuery is running in noConflict mode.

这篇关于对于函数(function($){})(),我看到里面有jQuery这个词,这是为什么呢?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)