您好,登錄后才能下訂單哦!
本篇文章為大家展示了length 和 size()在jQuery 有什么不同,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
jQuery length和size()區(qū)別總結(jié)如下:
1.length是屬性,size()是方法。
2.如果你只是想獲取元素的個(gè)數(shù),兩者效果一樣既 ("img").length
和("img").length
和("img").size()
獲取的值是一樣的。
3.如果計(jì)算一個(gè)字符串的長度或者計(jì)算一個(gè)數(shù)組元素的個(gè)數(shù)就只得用length, 如 $("#text").val().length
。
看看他們的執(zhí)行時(shí)間,http://jsperf.com/size-vs-length用這個(gè)檢測的
從圖中可以看到size()方法比length慢38%,原因何在?
原因在此:
看看官網(wǎng)的解釋(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.
上述內(nèi)容就是length 和 size()在jQuery 有什么不同,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。