개발2014. 2. 16. 23:34
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
Posted by 마스타