私は JavaScript の初心者です。同じ画像とテキストを 26 回ループする関数があります。画像とテキストの複数の段落のように表示します。ただし、以下に示すように、私のループはテキストと画像を重ねています。
以下に示すように、コードで画像を表示したいと思います。
どうすればこれを修正できますか? 私のJavaScriptコードは次のようになります
function getData() {
var stringData = '';
for (i = 0; i < 26; i++) {
stringData = stringData + '<div><image src="img/sample-image.png" width="10% "height="10%" align="left" border="0"/>' + 'In this example a sample of the album photo on the site shall appear alongside a simple description of the album. To view the album select the album.</div><br/>';
}
document.getElementById("list-menu").innerHTML = '' + stringData + '';
}