0

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

function changeBgImage(){

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

}

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

4

4 回答 4

2

采用

document.body.style.backgroundImage = "url('images/SecondBackground.png')";
于 2012-08-30T10:57:18.260 回答
1
function changeBGImage() {
  document.body.style.backgroundImage = "url(http://images.cheezburger.com/completestore/2010/7/9/fe8e91c5-c3f1-40cf-a034-983e8683ba73.jpg)";
};

这样就行了!

于 2012-08-30T10:57:54.337 回答
0

你很接近,但你也需要 .body 。

document.body.style.background = "url('images/SecondBackground.png')";
于 2012-08-30T10:57:25.920 回答
0

尝试这样的事情

              document.getElementById("id of body").setAttribute("style","background-url:'images/SecondBackground.png'")
于 2012-08-30T10:58:07.503 回答