티스토리 뷰
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>
'Language > JavaScript' 카테고리의 다른 글
[ JavaScript ] IE 와 FF 에서 사용되는 자바스크립트의 7가지 차이 (0) | 2015.11.29 |
---|---|
[ JavaScript ] IE 와 FF 와의 자바스크립트 및 객체 접근 차이점 정리 (0) | 2015.11.29 |
[ JavaScript ] window.close() / self.close() (0) | 2015.11.29 |
[ JavaScript ] 자식창에서 부모창 리로드 reload 하기 (0) | 2015.11.29 |
[ JavaScript ] javascript 로 xml 의 데이터 가져오기 (0) | 2015.11.29 |