javascript实现background 定时循环随机背景图案例一,采用API接口setInterval('Getbg();', 1000);function Getbg(){ var randomBgIndex = Math.round( Math.random() * 166 ); //输出随机的背景图 document.body.style.background="#9E9E9E url(http://api.yum6.cn/360img?"+randomBgIndex+") no-repeat ";}利用小杰的壁纸API接口实现,第一行的1000是切换时间,这里是毫秒单...