我想在 javascript 函数中更改 html 文档背景图像,但我遇到了一些困难。这就是我所拥有的:
function changeBgImage(){
document.background = "url('images/SecondBackground.png')";
}
但正如我所说,不工作..有什么想法吗?
我想在 javascript 函数中更改 html 文档背景图像,但我遇到了一些困难。这就是我所拥有的:
function changeBgImage(){
document.background = "url('images/SecondBackground.png')";
}
但正如我所说,不工作..有什么想法吗?
采用
document.body.style.backgroundImage = "url('images/SecondBackground.png')";
function changeBGImage() {
document.body.style.backgroundImage = "url(http://images.cheezburger.com/completestore/2010/7/9/fe8e91c5-c3f1-40cf-a034-983e8683ba73.jpg)";
};
这样就行了!
你很接近,但你也需要 .body 。
document.body.style.background = "url('images/SecondBackground.png')";
尝试这样的事情
document.getElementById("id of body").setAttribute("style","background-url:'images/SecondBackground.png'")