table ¿¡ ¸µÅ©°É±â (<tr>À̳ª <td> ¾îµð¿¡³ª °¡´É)
¸µÅ© °É±â
<table style="cursor:hand;" onclick="location.href='URL'">³»¿ë</table>
style="cursor:hand;" -> ¸¶¿ì½º ¿À¹ö½Ã Ä¿¼¸¦ ¼Õ¸ð¾çÀ¸·Î º¸¿©ÁÜ
onclick="location.href='URL'" -> URL¿¡ ¸µÅ©ÁÖ¼Ò¸¦ ³Ö¾îÁֽøé Å×ÀÌºí¿¡ ¸µÅ© °É¸²
-- ÇØ´ç ÆäÀÌÁö
<td height="248" style="cursor:hand;" onclick="location.href='http://www.kpresort.com/'">
-- »õâ¿¡¼ ¿±â
target=_selfÁöÁ¤À» ÇÏ´Â ¹æ¹ýÀ» ¸ô¶ó¼..´ÙÀ½ÀÇ ¹æ¹ýÀ¸·Î ó¸® Çß´Ù..-_-;
<td height="248" style="cursor:hand;" onclick="window.open('http://www.kpresort.com/','resort','scrollbars=yes location=yes menubar=yes toolbar=yes resizable=yes width=800 height=600')">
ÇÁ·¹ÀÓ Å¸°Ù ÁöÁ¤Çϱâ
onclick="location.href='URL'" ÀÌ ºÎºÐÀ» ¾Æ·¡¿Í °°ÀÌ ¹Ù²ãÁÖ¼¼¿ä.
onclick="parent.frames[Ÿ°ÙÇÁ·¹ÀÓ¹øÈ£].location='URL'"
ÇÁ·¹ÀÓ¿¡¼ Ÿ°Ù ÇÁ·¹ÀÓ¹øÈ£ ÁÖ´Â ¹ý.
<frameset >
<frame src="*.html" name="menu"> 0
<frame src="*.html" name="main"> 1
<frame src="*.html" name="bottom"> 2
</frameset>
À§¿Í °°ÀÌ Ã¹¹øÂ° ÇÁ·¹ÀÓÀº 0, µÎ¹øÂ°´Â 1, ¼¼¹øÂ°´Â 2 ...¸¸¾à ³×¹øÂ°°¡ ÀÖ´Ù¸é 3 ÀÌ·±½ÄÀ¸·Î ¹øÈ£¸¦ ÁÖ¸é µÈ´Ù.
¸¸¾à name="main"ÀÇ ³»¿ëÀÌ ¹Ù²î±æ ¿øÇÑ´Ù¸é..onclick="parent.frames[1].location='URL'"
Çѹø Ŭ¸¯À¸·Î main°ú bottom ÀÌ·±½ÄÀ¸·Î ¿©·¯°³ÀÇ Å¸°ÙÀÌ ¹Ù²î±æ ¿øÇÑ´Ù¸é..
onclick="parent.frames[1].location='URL'; parent.frames[2].location='URL'"ÀÌ·¸°Ô ¹Ù²ãÁÖ½Ã¸é µË´Ï´Ù.
|