0
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 种不同的类型。我想用我保存的图像替换这种类型。我该怎么做呢?

不同的类型是 - 电子产品、时装、体育用品、娱乐、玩具。

这些也是项目类型的值。

4

1 回答 1

1

您可以像这样添加图像:

tableres += '<td><img src="' + itemImage[i] + '"/></td>';

或者

tableres += '<td><img src="http://.../yourimage.jpg"/></td>';

根据我的猜测,这就是你想要的。

于 2013-04-02T16:29:21.787 回答