欢迎光临本站
我们一直在努力

length与size()使用对比

这次给大家带来length与size()使用对比,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用这个检测的

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

原因在此:

看看官网的解释(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.

相信看了本文案例你已经掌握了方法,更多精彩请关注有卡有网。

版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《length与size()使用对比》
文章链接:https://www.youkayouwang.com/kaquan-baike/xcx/154338.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。