NewsHTML TipsFlashPhotoDiaryProfileBBSLinkMail
   
  戻る  


テーブルのセルにカーソルを合わせるとマウスと背景色が変わり
クイックするとページを移動(リンク)する

(IE4・NN6以降)
 
・サンプル



ソース

<table border="1" width="150" align="center">
  <tr>
    <td align="center" bgcolor="#ffcccc"
      onmouseover="this.style.backgroundColor='#ffaaaa'"
      onmouseout="this.style.backgroundColor='#ffcccc'"
      style="cursor:pointer"
      onClick="location.href='****.html'">1</td>
  </tr>
  <tr>
    <td align="center" bgcolor="#ffcccc"
      onmouseover="this.style.backgroundColor='#ffaaaa'"
      onmouseout="this.style.backgroundColor='#ffcccc'"
      style="cursor:pointer"
      onClick="location.href='****.html'">2</td>
  </tr>
  <tr>
    <td align="center" bgcolor="#ffcccc"
      onmouseover="this.style.backgroundColor='#ffaaaa'"
      onmouseout="this.style.backgroundColor='#ffcccc'"
      style="cursor:pointer"
      onClick="location.href='****.html'">3</td>
  </tr>
</table>