본문 바로가기

IT 이야기/프로그래밍

TARGET 정리

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

TARGET 정리


"_self"       : (defalut) 현재창에 표시

"_blank"    : 새로운 창에 표시

"_parent"   : 부모창에 표시

"_top"       : 윈도우 최상위에 표시

"_search"   : 브라우저 검색창에 표시


1. form에서 사용하기

<form name="goform" method="post" target="_self"></form>

<form name="goform" method="post" target="_blank"></form>

<form name="goform" method="post" target="_parent"></form>

<form name="goform" method="post" target="_top"></form> 

<form name="goform" method="post" target="_search"></form> 

2. a 태그에서 사용하기

<a target="_self"></a>

<a target="_blank"></a>

<a target="_parent"></a>

<a target="_top"></a>

<a target="_search"></a>