300x250
ㅁ 테이블의 td tr 태그에 링크 걸기
테이블의 td 태그에 링크를 걸 필요가 있을 때, 자바스크립트 onClick 을 이용하여 링크를 걸어 줄 수 있다.
이 방법을 이용하면, td 태그 뿐만 아니라, tr table 태그에도 링크를 걸 수 있다.
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td align="center" onClick="location.href='http://www.daum.net/'" style="cursor:pointer;">다음</td>
</tr>
</table>
위에서와 같이 style="cursor:hand" 를 주어 손가락 모양으로 처리할 수 있다.
새창으로 띄우려면, window.open 을 사용하면 된다.
onClick="window.open('http://www.daum.net/','','');"
300x250
'개발' 카테고리의 다른 글
MySQL 테이블 복사하기 (0) | 2014.02.24 |
---|---|
웹 접근성 품질인증기관 지정 알림 - 미래창조과학부 (0) | 2014.02.20 |
div 에 background image 넣기, background-image:url(); (0) | 2014.02.16 |
IE10 에서 jQuery ajax 를 post 방식으로 보낼 때 파라미터 전달되지 않는 현상 (0) | 2014.02.16 |
input type=text 에 한글 영문 기본 입력 설정, ime-mode (0) | 2014.02.16 |