私はこのコードを持っています:
function gatherFollowers() {
var followers = [];
jQuery('.follower').each(function(index, value) {
var i = parseInt(jQuery(this).attr('data-id'));
followers.push(i);
});
return followers;
}
これはすべての属性を取得する必要がありますが、結果として次のようになります。
[100, 99, 88, 72, 63, 34, 31, 30, 29, each: function, eachSlice: function, all: function, any: function, collect: function…]
次のような単純な配列を返すにはどうすればよいですか。
[4,29,30,31,32,34,36,37,60,61,63,72,76,77,88,99,100]
ありがとう