码迷,mamicode.com
首页 > Web开发 > 详细

js随机显示图片

时间:2020-01-09 19:12:58      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:get   随机数   fun   mat   ntb   array   math   ima   col   

定义一个图片数组,生成一个随机数对应数据索引。

window.onload = choosePic;
function choosePic() {
    var myPix = new Array("images/lion.jpg","images/tiger.jpg","images/bear.jpg");
    var randomNum = Math.floor((Math.random() * myPix.length));
    document.getElementById("myPicture").src = myPix[randomNum];
}

js随机显示图片

标签:get   随机数   fun   mat   ntb   array   math   ima   col   

原文地址:https://www.cnblogs.com/root0/p/12172798.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!