マウスが乗ったらテーブル全体の背景色を変える

動作ブラウザ
Internet Explorer Netscape Navigator
4.0x 4.5 5.0x 5.5 6.0 4.x 6.0
Windows - ×
Macintosh - - ×
UNIX - - - - - ×

解  説  マウスが乗ったらテーブル全体の背景色を変えるにはtableタグのスタイルのbackgroundColorプロパティにカラー名またはカラーコードを設定します。
コード <html> <head> <title>マウスが乗ったらテーブル全体の背景色を変える</title> <script language="JavaScript"> <!-- function setTA(obj,flag){ obj.style.overflow = flag; } // --></script> </head> <body> <table border="2" onmouseover="this.style.backgroundColor='yellow'" onmouseout="this.style.backgroundColor='white'"> <tr><th>商品名</th><th>価格</th></tr> <tr><td>うに丼</td><td>2500円</td></tr> </table> </body> </html>

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