实例如下:
<script>
var imgs =["http://huoche.7234.cn/images/jb51/4a2q05opo2z.png",
"http://huoche.7234.cn/images/jb51/lm3hq0e0w2w.png",
"http://huoche.7234.cn/images/jb51/tcybirm4qaf.png",
"http://huoche.7234.cn/images/jb51/k2wqmudjcys.png",
"http://huoche.7234.cn/images/jb51/55k2kqas5wq.png",
"http://huoche.7234.cn/images/jb51/vjh55vwc2ht.png",
"http://huoche.7234.cn/images/jb51/uiufcehk0py.png",
"http://huoche.7234.cn/images/jb51/hf2utf0ysna.png",
];
var index=Math.floor(Math.random()*8);
var img = imgs[index];
function time(){
document.body.style.backgroundImage="url("+img+")";
}
document.body.onload = function(){
time();
}
</script>
以上这篇js设置随机切换背景图片的简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持软件开发网。