jQuery - 在节省资源的同时计算元素
jQuery - counting elements while saving resources
我想计算 dom 中的所有 .some-class
个元素。但是,我不希望它被保存为 collection(它会完成很多次,我只需要数字)。
有没有其他方法,而不是 $(".some-class").length
或 $(".some-class").size()
?
...i don't want it to be kept as a collection (it will be done many times and i only need the number).
没关系,抓住长度放开collection:
var count = $(".some-class").length;
只会保留长度(在 count
中),不会保留 collection。
我想计算 dom 中的所有 .some-class
个元素。但是,我不希望它被保存为 collection(它会完成很多次,我只需要数字)。
有没有其他方法,而不是 $(".some-class").length
或 $(".some-class").size()
?
...i don't want it to be kept as a collection (it will be done many times and i only need the number).
没关系,抓住长度放开collection:
var count = $(".some-class").length;
只会保留长度(在 count
中),不会保留 collection。