我想从包含所有图像名称的数组中加载 3 个随机图像。我这样做了,但src
不起作用。我不知道为什么!这是我的代码:
var images = ['image1.jpg', 'image2.jpg', 'image3.jpg'];
var longitut = images.length;
var num =1+ Math.floor(Math.random()*longitut);
var foto="\"image"+num+".jpg\"";
foto=foto.toString();
alert(foto);
document.getElementById("imatge1").src=foto;