我正在尝试将下面的脚本转换为正常功能,但不了解如何。
该脚本计算数组(productList.Lockers)中实例(模型)的数量,并将其附加到目标div。
productList.Lockers.forEach(o => $('#' + o.model).siblings('#modelcount').text((i, t) => ( parseInt(t, 10) || 0) + 1 ));
var modelCount = document.getElementById('allcount');
modelCount.innerHTML = productList.Lockers.length;
答案 0 :(得分:1)
似乎很简单:
productList.Lockers.forEach(function(o) {
return $('#' + o.model).siblings('#modelcount').text(function(i, t) {
return (parseInt(t, 10) || 0) + 1
})
})