티스토리 뷰

Anchor 태그에서는 a href=주소 target=_top, _self, _parent 이런식으로 지정
 
자바스크립트에서는
top.location="주소";
self.location.href="주소";
_parent.window.location="주소";
 
프레임인 경우
document.frames["프레임명"].location="주소";
document.frames[숫자].location="주소";
 
예제 )
 
< SCRIPT LANGUAGE="JavaScript" type="text/javascript">
    function targetHandler(strTarget) {
        eval(setTarget).location="http://www.naver.com";
    }
< /SCRIPT>
 
< a href=# onClick=targetHandler("self")>네이버</a> 

Total
Today
Yesterday
최근에 올라온 글
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31