subject table , tr, td 전체를 링크거는 태그
author 미랑 date 2004-09-26 hit 398 HIT
1. table , tr , td 에 링크거는 태그입니다.

* 테이블에 링크걸 경우

<table onMouseOver=this.style.backgroundColor='#f6f6f6' onMouseOut=this.style.backgroundColor='#ffffff' style=cursor:hand; onclick=location.href="http://cafe.naver.com/oksos">테이블내용</table>

* td 에 링크걸 경우

<td onMouseOver=this.style.backgroundColor='#f6f6f6' onMouseOut=this.style.backgroundColor='#ffffff' style=cursor:hand; onclick=location.href="http://cafe.naver.com/oksos">내용</td>

위에서 링크주소만 바꿔주시면 됩니다.

* 주석

* onMouseOver=this.style.backgroundColor='#f6f6f6' -> 마우스 오버시 배경색
* onMouseOut=this.style.backgroundColor='#ffffff' -> 마우스 아웃시 배경색
* style=cursor:hand; -> 마우스 오버시 커서를 손가락으로
* onclick=location.href="http://cafe.naver.com/oksos" -> 클릭시 이동 링크 주소

2. 만약 타겟을 주어야 할 경우가 있습니다.
테이블이나 td 에 타겟을 주어 링크를 할 경우의 태그입니다.

* 테이블에 타겟을 준 링크를 걸 경우

<table onMouseOver=this.style.backgroundColor='#f6f6f6' onMouseOut=this.style.backgroundColor='#ffffff' style=cursor:hand;
onclick=parent.타겟.location="http://cafe.naver.com/oksos">테이블내용</table>

* td 에 타겟을 준 링크를 걸 경우

<td onMouseOver=this.style.backgroundColor='#f6f6f6' onMouseOut=this.style.backgroundColor='#ffffff' style=cursor:hand;
onclick=parent.타겟.location="http://cafe.naver.com/oksos">내용</td>


위에서 타겟과 링크주소만 바꿔주시면 되는데,
타겟이 될 문서는 미리 프레임문서에서 name 값으로 정해진 값이 타겟이됩니다.

예를 들어서

<frameset >
<frame src="top.html" name="ttt">
<frame src="main.html" name="ppp">
<frame src="bottom.html" name="qqq">
</frameset>

프레임문서가 위와 같이 짜여져 있다면 타겟은 ttt 또는 ppp 또는 qqq 중 링크를 보여주실 문서의 위치를 정하시면 됩니다.
목록보기
27  모바일 웹에서 전화걸기 태그  2022-06-08 59
26  HTML 오디오 / 비디오 태그, 유튜브 iFrame  2022-04-06 43
25  테이블 투명 처리  2008-02-16 451
24  미디어 플레이어 컨트롤 (네이버)  2006-11-23 254
23  테이블작성시 고급테크닉 - padding tag  2006-06-24 293
22  레이어 스타일로 위치값 정하기  2006-05-03 236
21  iframe 사용 형식  2006-04-20 203
20  라디오 버튼 사용하기  2006-04-06 197
19  주소고정시 새로고침하면 메인으로 가는 것 방지하는 소스  2004-09-26 280
 table , tr, td 전체를 링크거는 태그  2004-09-26 398
17  이미지 도구모음이 안뜨게 하는 태그입니다.  2004-09-26 163
16  이미지 border=0 를 한번에 제어하자  2004-09-26 122
15  링크 테두리 없애기 - 단일 링크  2004-09-09 143
14  색상표  2004-05-04 151
1 2