À¥Á¦·Î¿¡ ¿À½Å°ÍÀ» ȯ¿µÇÕ´Ï´Ù.
 
                   
home ·Î±×ÀΠȸ¿ø°¡ÀÔ À̺¥Æ®
 °øÁö»çÇ×  
 ¼­¹öÀÛ¾÷  
 º¸¾È´º½º  
 º¸¾ÈÆÐÄ¡  
 ÀÚÁÖ ¹¯´Â Áú¹®  
 Áö½ÄÆ÷·³  

HTML

 
PHP
Á¦·Îº¸µå
LINUX
WINDOWS
 È£½ºÆÃ ¸Þ´º¾ó
 µµ¸ÞÀÎ ¸Þ´º¾ó  
µµ¸ÞÀÎ µî·Ï
µµ¸ÞÀÎ ÆÄÅ·
µµ¸ÞÀÎ Æ÷¿öµù
µµ¸ÞÀÎ DNSº¯°æ
 À¥¸ÞÀÏ È£½ºÆÃ ¸Þ´º¾ó  
MS-Outlook 2007 ¼¼ÆÃ¹ý
Outlook Express 6.0 ¼¼ÆÃ¹ý
 À̺¥Æ®

ns.webzero.kr
121.254.249.2
 
ns2.webzero.kr
121.254.249.3



°í°´¼¾ÅÍ È¨ > °í°´¼¾ÅÍ

HTML



Á¦¸ñ: ŸÄÏ(target) ¾²´Â¹ý
ºÐ·ù: ÀϹÝ
À̸§: À¥Á¦·Î¢â * http://www.webzero.kr


µî·ÏÀÏ: 2007-11-16 12:32
Á¶È¸¼ö: 8112 / Ãßõ¼ö: 188


ÇÁ·¹ÀÓÀ» ¾²½Ç¶§ »ý°¢ÇÒ °Í ¼¼°¡Áö
1. frame_name.location = 'url.php';
  ¶Ç´Â frame_name.location.href = 'url.php';
  ¶Ç´Â frame_name.location.replace('url.php')
2. parent.frame_name.location = 'url.php';
3. opener.parent.frame_name.location = 'url.php';

»õâÀ» ¿­°ÔÇØÁØ Ã¢ÀÇ ÁÖ¼Ò¸¦ ¹Ù²Ù°í »õâÀ» ²ö´Ù.
<script>
  opener.location.href = 'url.php';
  self.close();
</script>

»õâÀ» ¿­°ÔÇØÁØ Ã¢ÀÇ ÁÖ¼Ò¸¦ »õ·Î°íħÇÏ°í »õâÀ» ²ö´Ù
<script>
  opener.location.reload();
  self.close();
</script>

´Ù¸¥ ÇÁ·¡ÀÓÀÇ ÁÖ¼Ò¸¦ ¹Ù²Ù°Ô ÇÏ·Á¸é
<script>
  frame_name.location.href = 'url.php';
</script>

ÇÁ·¡ÀÓ ±¸Á¶»ó »óÀ§ ÇÁ·¡ÀÓÀÇ ÁÖ¼Ò¸¦ ¹Ù²Ù°Ô ÇÏ·Á¸é
<script>
  parent.location.href = 'url.php';
</script>

Ÿ°ÙÀÌ ÁöÁ¤µÈ ÇÁ·¹ÀÓÀ» ¹Ù²Û´Ù.(Ÿ°ÙÇϳª)
<script>
  parent.target(Ÿ°Ù).location.href = 'url.php';
</script>

Ÿ°ÙÀÌ ÁöÁ¤µÈ ÇÁ·¹ÀÓÀ» ¹Ù²Û´Ù.(Ÿ°ÙµÑ)
<script>
  parent.target1(Ÿ°Ù1).location.href = 'url1.php';
  parent.target2(Ÿ°Ù2).location.href = 'url2.php';
</script>

Ÿ°ÙÀÌ ÁöÁ¤µÈ ÇÁ·¹ÀÓÀ» ¹Ù²Û´Ù.(Ÿ°Ù¼Â)
<script>
  parent.target1(Ÿ°Ù1).location.href = 'url1.php';
  parent.target2(Ÿ°Ù2).location.href = 'url2.php';
  parent.target3(Ÿ°Ù3).location.href = 'url3.php';
</script>

Ÿ°ÙÀÌ ÁöÁ¤µÈ ÇÁ·¹Àӵΰ³¸¦ Ŭ¸¯À¸·Î ¹Ù²Ù·Á¸é
<script>
function target_frame(url1, url2)
{
  parent.top_frame.location.href = url1;
  parent.main_frame.location.href = url2;
}
</script>
<a href="javascript:target_frame('main_menu.html', '$go_url');"> È®ÀÎ </a>

·Î±×ÀÎÆäÀÌÁö ¿¡¼±
<script>
  parent.top_frame.location.href = '../main.html'; //main.html´Â ·Î±×ÀÎÆäÀÌÁö º¸´Ù »óÀ§µð·ºÅ丮¿¡ ÀÖ´Ù.
  parent.main_frame.location.href = '$go_url';
</script>

·Î±×ÀÎÆäÀÌÁö¸¦ »õâÀ¸·Î ¶ç¿ü´Ù¸é
<script>
  opener.parent.top_frame.location.href = '../main.html';
  opener.parent.main_frame.location.href = '$go_url';
  self.close();
</script>


ÀÌ»óÀÔ´Ï´Ù.
  -¸ñ·Ïº¸±â  
¹øÈ£ Á¦¸ñ ±Û¾´ÀÌ Ãßõ Á¶È¸
24 ¸µÅ©½Ã ¹ØÁÙ¾ø¾Ö±â À¥Á¦·Î¢â 175 10399
23 ¸µÅ©½Ã ±½ÀºÁÙ »ý±â±â À¥Á¦·Î¢â 166 8933
22 ¸µÅ©½Ã ±ÛÀÚÄ¿Áö°Ô Çϱâ À¥Á¦·Î¢â 157 8665
21 ¸µÅ©½Ã Á¡¼± ¹ØÁÙ»ý±â±â À¥Á¦·Î¢â 194 8778
20 ¸µÅ©¿¡ ¸¶¿ì½º¿Ã¸®¸é ¹Ú½º »ý±â°Ô Çϱâ À¥Á¦·Î¢â 229 10386
19 ¸µÅ©½Ã Á¡¼±Å׵θ® ¾ø¾Ö±â À¥Á¦·Î¢â 204 10621
18 ȨÆäÀÌÁö ¸¸µé¶§ »ç¿ëµÇ´Â ¸ÞŸÅÂ±× À¥Á¦·Î¢â 208 11323
17 µÎ°³ÀÌ»óÀÇ À¥ÆùÆ®¸¦ ÇÑÆäÀÌÁö¿¡ »ç¿ëÇϱâ À¥Á¦·Î¢â 162 8147
16 °Ô½ÃÆÇÀÇ ³»¿ëÀüü¸¦ Åõ¸íÀ¸·Î ÇÏ¿© À̹ÌÁö »ðÀÔ À¥Á¦·Î¢â 117 9385
15 À̹ÌÁö ·Ñ¿À¹öÇÒ¶§ À¥Á¦·Î¢â 193 7823
14 Á¡¼±¶óÀÎ ¸¸µé±â À¥Á¦·Î¢â 186 8000
13 ¿òÁ÷ÀÌ´Â Á¡¼±Å×À̺í À¥Á¦·Î¢â 148 7668
12 ÆäÀÌÁö¸¦ »õ·Î°íÄ§ÇØµµ óÀ½À¸·Î µ¹¾Æ°¡´Â°ÍÀ» ¹æÁö À¥Á¦·Î¢â 170 8210
11 ÇѰ³ÀÇ È£½ºÆÃÀ¸·Î ¿©·¯°³ÀÇ È¨ÇÇ µ¿½Ã¿î¿µ À¥Á¦·Î¢â 176 8062
ŸÄÏ(target) ¾²´Â¹ý À¥Á¦·Î¢â 188 8112
9 ÆÄÀÏÈ®ÀåÀÚº° Á¾·ù À¥Á¦·Î¢â 184 11045
8 HTML ¹®¼­ÀÇ margin À̶õ? À¥Á¦·Î¢â 173 8167
7 ƯÁ¤ ½Ã°£À̳ª ¿äÀÏ¿¡¸¸ ¸Þ´º¸¦ Ç¥½Ã À¥Á¦·Î¢â 185 8289
6 ¸Þ½ÃÁö ¾È¶ß´Â ¿À¸¥ÂÊ ¸¶¿ì½º ±ÝÁö¼Ò½º À¥Á¦·Î¢â 167 8017
5 CSS ÀúÀÛ¿¡ °üÇÑ 10°¡Áö ÆÁ À¥Á¦·Î¢â 159 8168
-¸ñ·Ïº¸±â  -´ÙÀ½ÆäÀÌÁö  
1   2  
       
/ skin by  

±â¼úº¸Áõ±â±ÝÀÎÁõ  º¥Ã³±â¾÷ ±â¼úÇõ½ÅÇü Áß¼Ò±â¾÷ INNOBIZ ISO 9001 ÀÎÁõ±â¾÷ ÀÌÈ£½ºÆ®µ¥ÀÌÅͼ¾ÅÍ ±â¾÷ºÎ¼³¿¬±¸¼Ò ÀÎÁ¤¼­ Á¤º¸º¸È£ ¾ÈÀüÁø´Ü ÇÊÁõ ȹµæ
(»ç)Çѱ¹ÀÎÅͳÝÈ£½ºÆÃÇùȸ ȸ¿ø»ç Çѱ¹ÀÎÅͳÝÁøÈï¿ø ICANN ÀÎÁõ ±¹Á¦µµ¸ÞÀεî·Ï±â°ü Çѱ¹ÀÎÅͳÝÁøÈï¿ø°øÀÎ µµ¸ÞÀεî·Ï´ëÇàÀÚ Çѱ¹¼ÒÇÁÆ®¿þ¾î»ê¾÷Çùȸ
¼ÒÇÁÆ®¿þ¾î»ç¾÷ÀÚ ½Å°íÈ®Àμ­

ȸ»ç¼Ò°³ °³ÀÎÁ¤º¸Ãë±Þ¹æÄ§ È£½ºÆÃ ÀÌ¿ë¾à°ü ȸ¿ø ÀÌ¿ë¾à°ü À̸ÞÀÏÁÖ¼Ò ¹«´Ü¼öÁý°ÅºÎ °í°´Áö¿ø ã¾Æ¿À½Ã´Â ±æ

¤ýº»»ç : 153-803 ¼­¿ï½Ã ±Ýõ±¸ °¡»êµ¿ 371-37 STX VŸ¿ö 1509È£ ¤ýIDC ¿î¿µ¼¾ÅÍ : ¼­¿ï½Ã ±Ýõ±¸ °¡»êµ¿ 459-9 LG µ¥ÀÌÄÞ 7Ãþ
(ÁÖ)ÀÌÈ£½ºÆ®µ¥ÀÌÅͼ¾ÅÍ »ç¾÷ÀÚµî·Ï¹øÈ£:214-87-61456 ºÎ°¡Åë½Å»ç¾÷½Å°í:¼­ÃÊ Á¦ 11006È£ Åë½ÅÆÇ¸Å¾÷½Å°í:¼­ÃÊ Á¦ 05006È£
Copyright(c)2005-2010 ehostIDC Allrights reserved. domain@ehostidc.co.kr

  ±Â³×À̹ö½º