我想获取页面中的项目列表并将它们推送到数组中:
$('#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