我已经看到了许多基于链接类的不同后台切换,但是我只想在任何页面加载(没有cookie)上使用简单的后台切换器,而不依赖于链接。
有一个简单的方法吗? jQuery的?
最佳答案
正在寻找javascript timers吗?
例:
setInterval("switchBackground()", 1000);
function switchBackground( )
{
$("body").css("backgroundImage", "xxx");
}
希望对您有所帮助!
编辑:
要在开始时生成随机背景:
$(document).ready(function() {
//This will be random from bg1.jpg to bg10.jpg
$("body").css("backgroundImage", "/images/bg"+GenerateNumber(10)+".jpg");
//1 to max
function GenerateNumber(max) {
return Math.floor(Math.random()*max) + 1;
}
});
关于jquery - 后台切换页面加载,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4015518/