我有一个包含对象的数组,这些对象的顺序相同,并且对应于li
a 的ul
。
我想知道这样做之间是否有任何微不足道的区别:
(this.element is the ul
's)
this.element.children(".tagit-choice:last").remove();
vs
(this.tagsArray is the array of objects about the li
's)
this.tagsArray[this.tagsArray.length -1].element.remove();
或者有没有更好的方法(注意当它被称为 tagsArray 时总会有一些东西,所以得到 -1 的索引不是问题)?