テーブルを使ったリンク |
- 日時: 2007/07/31 11:19
- 識別: IDfAT8CSZsQy2
- 名前: juria
- テーブルを使ったリンクの中で一つだけターゲットをblankにしたいのですが、どこに書き込んだらいいんでしょうか・・・。
たとえば↓のリンク「index.html」「2.html」「3.html」の中でindexと2は自身のウィンドウでいいのですが、3だけは別ウィンドウで開きたいという場合です。 どなたかよろしくお願いします。
<TABLE HEIGHT=30 BORDER=1 BGCOLOR="#FFFFFF" CELLSPACING=0> <TR> <TD WIDTH=150 ALIGN="center" onClick="window.location.href='index.html'" onmouseover="this.style.backgroundColor='#80FFFF';" onmouseout="this.style.backgroundColor=''" STYLE="cursor:hand;">テストページ1</TD> <TD WIDTH=150 ALIGN="center" onClick="window.location.href='2.html'" onmouseover="this.style.backgroundColor='#80FFFF';" onmouseout="this.style.backgroundColor=''" STYLE="cursor:hand;">テストページ2</TD> <TD WIDTH=150 ALIGN="center" onClick="window.location.href='3.html'" onmouseover="this.style.backgroundColor='#80FFFF';" onmouseout="this.style.backgroundColor=''" STYLE="cursor:hand;">テストページ3</TD> </TR> </TABLE>
| |