for (var i = 0; i < itemNumber.length; i++) {
tableres += '< tr>';
tableres += '<td>' + itemNumber[i] + '</td>';
tableres += '<td>' + itemName[i] + '</td>';
tableres += '<td>' + itemType[i] + '</td>';
tableres += '<td>' + itemDesc[i] + '</td>';
tableres += '<td>' + itemStock[i] + '</td>';
tableres += '<td>' + itemPrice[i] + '</td>';
tableres += '</tr>';
}
tableres += '< /table>';
在这段代码中,在 itemType 中有 5 种不同的类型。我想用我保存的图像替换这种类型。我该怎么做呢?
不同的类型是 - 电子产品、时装、体育用品、娱乐、玩具。
这些也是项目类型的值。