我正在<a>
使用 jQuery.each()
函数检索元素中存在的文本值并将其存储在一个数组中。我找到了以下两种方法,但不确定我应该更喜欢哪一种。
var textArr = [];
// Method 1
var textLinks = $("a").each(function(){
textArr.push($.trim($(this).text()));
});
//Method 2
$("a").each(function(){
textArr.push($.trim($(this).text()));
});
方法一和方法二的优缺点是什么?