最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Why does jQuery.length == 2? - Stack Overflow

programmeradmin0浏览0评论

For both current stable jQuery versions (1.11.0 & 2.1.0), I've noticed that jQuery.length == 2 after jQuery is loaded.

Why is that ?

Both jQuery[0] and jQuery[1] are undefined.

I'm familliar with the jQuery array-like objects and console behavior regarding arrays/objects and objects with .length and .splice().

Just wondering about jQuery.length

For both current stable jQuery versions (1.11.0 & 2.1.0), I've noticed that jQuery.length == 2 after jQuery is loaded.

Why is that ?

Both jQuery[0] and jQuery[1] are undefined.

I'm familliar with the jQuery array-like objects and console behavior regarding arrays/objects and objects with .length and .splice().

Just wondering about jQuery.length

Share Improve this question asked Feb 11, 2014 at 19:59 TiTiTiTi 3631 gold badge7 silver badges15 bronze badges 1
  • developer.mozilla/en-US/docs/Web/JavaScript/Reference/… – Bergi Commented Feb 11, 2014 at 20:11
Add a ment  | 

2 Answers 2

Reset to default 11

jQuery is a function, and the length property of a function equals the number of formal (declared) parameters to the function. From MDN:

length is a property of a function object, and indicates how many arguments the function expects, i.e. the number of formal parameters. This number does not include the rest parameter. By contrast, arguments.length is local to a function and provides the number of arguments actually passed to the function.

Specifically, the jQuery function has this signature (source):

jQuery = function( selector, context ) {
    ...
}

jQuery is a function.
The length property of a function returns the number of declared parameters.

发布评论

评论列表(0)

  1. 暂无评论