首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

div中背景自动变换解决办法

2012-06-06 
div中背景自动变换在一个网页中,body中有背景,想在页面的div框中加上图片的自动变换,怎么弄啊,请教!!!!!拜

div中背景自动变换
在一个网页中,body中有背景,想在页面的div框中加上图片的自动变换,怎么弄啊,请教!!!!!拜托。

[解决办法]

HTML code
<html><head><script>  var aaa=['1.png','2.png','3.png'];  var count = 0;  function on_load(){        document.body.style.background="url("+aaa[count]+")";    if (++count == aaa.length){      count = 0;    }  }  setInterval("on_load()",1000);  </script></head><body></body><html>
[解决办法]
document.body.style.background="url("+aaa[count]+")";

改成

document.getElementById("div的id").style.background="url("+aaa[count]+")";

热点排行