gpt4 book ai didi

javascript - jquery中 `$(undefined)`的返回值是多少

转载 作者:行者123 更新时间:2023-11-30 13:00:58 26 4
gpt4 key购买 nike

$(undefined) 的返回值是一个对象还是数组还是什么?

$ 的主体:

  return new jQuery.fn.init( selector, context, rootjQuery );

jQuery.fn.init 的粒子体是:

  // HANDLE: $(""), $(null), $(undefined), $(false)
if ( !selector ) {
return this;
}

我的理解是:

 return new jQuery.fn.init( selector, context, rootjQuery );
~~~~~~~~~~
^
|
this?

最佳答案

没有。它与 new keyword 一起使用,因此 jQuery.fn. 无关紧要。重要的是它的 .prototype,即 jQuery.fn。参见 this question了解详情。

So what's the return value of $(undefined)?

它是一个继承自 jQuery 原型(prototype)的空对象,所以它与 Object.create($.fn) 相同。

关于javascript - jquery中 `$(undefined)`的返回值是多少,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17424846/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com