ページ内のアイテムのリストを取得し、それらを配列にプッシュしたい:
$('#softwareUpdates article').each(function(index) {
productList.push({
class: $(this).attr("class"),
text: $(this).attr("su_title")
});
});
ただし、複数のアイテムを避けたいので、productList配列を現在チェックすると、次のようになります。
Item 1, Item1, Item 2, Item 3, Item 3, Item 4
私がしたいのは:
Item 1, Item 2, Item 3, Item 4