在javascript函数中更改文档背景图像

时间:2012-08-30 10:54:35

标签: javascript html css

我想在javascript函数中更改html文档背景图片,但我遇到了一些困难。这就是我所拥有的:

function changeBgImage(){

    document.background = "url('images/SecondBackground.png')";

}

但正如我所说,不工作......有什么想法吗?

4 个答案:

答案 0 :(得分:2)

使用

document.body.style.backgroundImage = "url('images/SecondBackground.png')";

答案 1 :(得分:1)

function changeBGImage() {
  document.body.style.backgroundImage = "url(http://images.cheezburger.com/completestore/2010/7/9/fe8e91c5-c3f1-40cf-a034-983e8683ba73.jpg)";
};

那就行了!

答案 2 :(得分:0)

你很亲密,但你也需要.body。

document.body.style.background = "url('images/SecondBackground.png')";

答案 3 :(得分:0)

尝试这样的事情

              document.getElementById("id of body").setAttribute("style","background-url:'images/SecondBackground.png'")