1

我有一个包含对象的数组,这些对象的顺序相同,并且对应于lia 的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 的索引不是问题)?

4

1 回答 1

1

选择更具可读性和可维护性的选项:

.children(".tagit-choice:last").remove();
于 2012-05-06T02:25:31.737 回答