在 jQuery 核心源代码中传入未定义的参数

发布于 2024-10-24 23:02:20 字数 392 浏览 3 评论 0原文

我注意到在 jQuery 核心中,传入的两个参数之一是未定义的。

(function( window, undefined ) {

    // Use the correct document accordingly with window argument (sandbox)
    var document = window.document;
    var jQuery = (function() {
        // ...defintion of the rest of the core...
    window.jQuery = window.$ = jQuery;
})(window);

谁能解释为什么第二个参数是未定义

提前致谢!

I noticed that in the jQuery core, one of the two arguments passed in is undefined.

(function( window, undefined ) {

    // Use the correct document accordingly with window argument (sandbox)
    var document = window.document;
    var jQuery = (function() {
        // ...defintion of the rest of the core...
    window.jQuery = window.$ = jQuery;
})(window);

Can anyone explain why the second argument is undefined?

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柏林苍穹下 2024-10-31 23:02:20

Undefined 是一种类型,但也是一个全局变量。

您可以通过执行 undefine =whatever 来让模块覆盖 undefined 的值。

jQuery 使用立即函数来确定窗口和未定义的范围。

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/undefined

Undefined is a type but is also a global variable.

You can have a module that overwrites the value of undefined by doing undefined = whatever.

jQuery uses a immediate function to scope window and undefined.

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/undefined

黯然#的苍凉 2024-10-31 23:02:20

由于有人可以像这样覆盖 undefined ,因此

undefined = true;

您的立即函数的代码将按应有的方式传递它(保持未定义)。我认为它在 我从 jQuery 中学到的 10 件事中提到过来源

Since someone could overwrite undefined like this

undefined = true;

Code of your immediate function will pass it as it should be (stay undefined). I think it's mentioned in 10 Things I Learned from the jQuery Source.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文