欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

怎样使用jQuery length 和 size()

程序员文章站 2022-03-26 14:20:40
...
这次给大家带来怎样使用jQuery length 和 size(),使用jQuery length 和 size()的注意事项有哪些,下面就是实战案例,一起来看一下。

1.length是属性,size()是方法。

2.如果你只是想获取元素的个数,两者效果一样既 ("img").length("img").length("img").size() 获取的值是一样的。

3.如果计算一个字符串的长度或者计算一个数组元素的个数就只得用length, 如 $("#text").val().length

看看他们的执行时间,http://jsperf.com/size-vs-length用这个检测的

怎样使用jQuery length 和 size()

从图中可以看到size()方法比length慢38%,原因何在?

原因在此:

怎样使用jQuery length 和 size()

看看官网的解释(http://api.jquery.com/size/):

The .size() method is deprecated as of jQuery 1.8. Use the .length property instead.

The .size() method is functionally equivalent to the .length property; however, the .length property is preferred because it does not have the overhead of a function call.

从上可以看出size()是调用length属性实现的

在jquery 1.8后 length取代了 size() ,因为length不需要返回一个函数调用,更优秀。

Learn from yesterday, live for today, hope for tomorrow.

相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!

推荐阅读:

如何使用Vue实现拖拽效果

Node.js+console输出日志文件实例分析

以上就是怎样使用jQuery length 和 size()的详细内容,更多请关注其它相关文章!