背景画像を指定する(backgroundImage)
説明
背景画像を指定するにはstyleオブジェクトのbackgroundImageプロパティに"url(画像のURL)"の文字列を指定します。画像のURLはHTMLファイルがある場所が基準になります。
サンプルプログラム
window.onload = function(){
var ele = document.getElementsByTagName("h1")[0];
ele.style.backgroundImage = "url(./images/bg.gif)";
}