我想要一个显示randome的图像列表,这是最好的方法吗?

时间:2017-05-17 17:06:03

标签: arrays image list button setbackground

我希望每次单击时都会随机显示一个按钮背景中显示的图像列表。

哪种方法最好?我假设没有数组,因为它已初始化,因此它具有相同的大小,我认为每次单击按钮时我都希望减少列表。

1 个答案:

答案 0 :(得分:0)

在js:

var array = ["https://madeby.google.com/static/images/google_g_logo.svg","http://searchengineland.com/figz/wp-content/seloads/2015/12/google-amp-fast-speed-travel-ss-1920.jpg"]
//whatever links you want
function go(){
    var x = array[Math.floor(Math.random()*array.length)]
    document.getElementById("hi").src=x
}
        <button onclick="go()">start</button>
        <img id="hi"></img>