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

このようなことを試してください

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

あなたは近くにいましたが、.body も必要です。

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