Web

테이블(table/tr/td)에 링크걸기

알콜뭉뭉이 2017. 6. 14. 06:23
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
<table style="cursor:pointer;" onclick="location.href='http://www.happyjung.com/'" onmouseover="window.status='http://www.happyjung.com/'" onmouseout="window.status=''">
  <tr>
    <td>링크</td>
  </tr>
</table>
 
<table>
  <tr style="cursor:pointer;" onclick="location.href='http://www.happyjung.com/'" onmouseover="window.status='http://www.happyjung.com/'" onmouseout="window.status=''">
    <td>링크</td>
  </tr>
</table>
 
<table>
  <tr>
    <td style="cursor:pointer;" onclick="location.href='http://www.happyjung.com/'" onmouseover="window.status='http://www.happyjung.com/'" onmouseout="window.status=''">링크</td>
  </tr>
</table>