<a>
jQuery関数を使用して要素内に存在するテキスト値を取得.each()
し、配列に格納しています。以下の 2 つの方法を見つけましたが、どちらを優先すべきかわかりません。
var textArr = [];
// Method 1
var textLinks = $("a").each(function(){
textArr.push($.trim($(this).text()));
});
//Method 2
$("a").each(function(){
textArr.push($.trim($(this).text()));
});
方法 1 と方法 2 の長所と短所は何ですか?