我有另一个关于数组的基本 javascript 问题。
我有一个简单的代码,每次页面加载时都会加载一个随机图像。问题是我想在图像本身旁边显示图像的名称。我似乎无法弄清楚如何。到目前为止,这是我的代码:
//I. Array of pictures that will randomly appear
var plaatjes = new Array ( );
plaatjes[0] = "burger.png";
plaatjes[1] = "tomaat.png";
plaatjes[2] = "aardappel.png";
plaatjes[3] = "sla.png";
//II. function to generate number from 0 to n
function randomplaatje (n)
{
return ( Math.floor ( Math.random ( )*0.9999999999999999* (n + 1)) );
}
//III. assign any random number from 0 to 2 to x.
x = randomplaatje(3);
//IV. display the image
document.write('<img alt="randomplaatje" src="' + plaatjes[x] + '"/>');
是否也可以向数组内的图像添加 alt 标签?它们是否可以显示在文本框或其他内容中的图像旁边。
提前致谢!