テーブルのセルの背景画像を変更する


動作ブラウザ 【 IE:5.0   NN:6.0
Internet Explorer Netscape Navigator Firefox Opera iCab Safari
3.0x 4.0x 4.5 5.0x 5.5 6.0 2.0x 3.0x 4.0x 4.x 6.0 7.0 8.0 1.x 7.x 8.x 2.x 1.x 2.x
Windows × × - × × × × -
Macintosh × × × - - × × × × -
UNIX - - - - - - × × × × - - - -

ポイント this.style.backgroundImage = "url(bg1.gif)";
説  明 テーブルのセルの背景画像を変更するにはtdタグのスタイルシートを変更します。スタイルプロパティのbackgroundImageにurlを指定します。urlの指定は文字列で"url(bg1.gif)"のようにする必要があります。単純にURLを指定しただけでは表示されません。
サンプル <html> <head> <title>テーブルのセルの背景画像を変更する</title> <style type="text/css"><!-- td { width:50px; height:50px; } --></style> <script type="text/javascript"><!-- function setCellBG1() { this.style.backgroundImage = "url(bg1.gif)"; } function setCellBG2() { this.style.backgroundImage = "url(bg2.gif)"; } window.onload = function() { var tdTag = document.getElementsByTagName("td"); for (var i=0; i<tdTag.length; i++) { tdTag[i].style.backgroundImage = "url(bg1.gif)"; tdTag[i].onmouseover = setCellBG2; tdTag[i].onmouseout = setCellBG1; } } // --></script> </head> <body> <p>文字の上にマウスを乗せてください</p> <table border="1"> <tr><td>セル1</td><td>セル2</td></tr> <tr><td>セル3</td><td>セル4</td></tr> <tr><td>セル5</td><td>セル6</td></tr> </table> </body> </html>
補足説明 なし

■サンプルスクリプトを実行する >>実行
■各ブラウザでの動作結果を見る >>View!



写真素材 PIXTA