怎样使用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.
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
推荐阅读:
以上就是怎样使用jQuery length 和 size()的详细内容,更多请关注其它相关文章!
推荐阅读
-
HTML5自定义data-* data(obj)属性和jquery的data()方法的使用
-
怎样使用php与jquery设置和读取cookies
-
jQuery length 和 size()区别总结
-
使用jQuery实现一个类似GridView的编辑,更新,取消和删除的功能
-
使用jquery datatable和bootsrap创建表格实例代码
-
使用js dom和jquery分别实现简单增删改
-
Jquery遍历的next()方法和prev()方法的使用讲解
-
AMD异步模块定义介绍和Require.js中使用jQuery及jQuery插件的方法
-
jQuery动画效果animate和scrollTop结合使用实例
-
length属性、length()方法和size()的方法的区别