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)";
};
それでいいよ!
このようなことを試してください
document.getElementById("id of body").setAttribute("style","background-url:'images/SecondBackground.png'")
あなたは近くにいましたが、.body も必要です。
document.body.style.background = "url('images/SecondBackground.png')";