묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
중첩된 프레임의 제어,,,,
2002.04.01 15:10
프레임으로 나누어진 사이트에서 제로보드의 아웃로그인을 구현하려다 막혔습니다.
아래는 프레임셋 소스 입니다.
<frameset cols="156,*,31">
<frame name="leftFrame" src="left.php">
<frameset rows="8,*">
<frame name="top_bottom" src="top_bottom.html">
<frame name="main" src="board/zboard.php?id=longtime">
</frameset>
<frame name="rightframe src="right.html">
</frameset>
질문입니다.
자바 스크립트로 좌측 프레임에 있는 left.php 에서 우측의 zboard.php를 리프레쉬 시키려 합니다.
로그인 폼이 있는 좌측프레임에서 로그인을 했을때 우측의 게시판을 RELOAD 하려는 거죠.
로그인과 게시판이 지금 따로따로 놀거든요.
그런데 프레임셋 간의 통신이 힘들어 어떻게 할 지 모르겠습니다.
프레임은 꼭 저렇게 구성 해야만 하구요.
저런 경우의 프레임 셋은 해결책이 전혀 없습니까?
거의 이틀째 머리 싸메네요..
아래는 프레임셋 소스 입니다.
<frameset cols="156,*,31">
<frame name="leftFrame" src="left.php">
<frameset rows="8,*">
<frame name="top_bottom" src="top_bottom.html">
<frame name="main" src="board/zboard.php?id=longtime">
</frameset>
<frame name="rightframe src="right.html">
</frameset>
질문입니다.
자바 스크립트로 좌측 프레임에 있는 left.php 에서 우측의 zboard.php를 리프레쉬 시키려 합니다.
로그인 폼이 있는 좌측프레임에서 로그인을 했을때 우측의 게시판을 RELOAD 하려는 거죠.
로그인과 게시판이 지금 따로따로 놀거든요.
그런데 프레임셋 간의 통신이 힘들어 어떻게 할 지 모르겠습니다.
프레임은 꼭 저렇게 구성 해야만 하구요.
저런 경우의 프레임 셋은 해결책이 전혀 없습니까?
거의 이틀째 머리 싸메네요..
댓글 2
-
pupstar
2002.04.01 19:18
-
Legend
2002.04.01 19:28
left.php에서 로그인 폼을 submit할때 오른쪽 프레임도 동시에 리로드 하시면 됩니다.
로그인 버튼에다가 onclick 이벤트핸들러를 주시고 parent.main.location.reload() 요렇게 해주시면 됩니다.
-->> onClick="parent.main.location.reload();" 요렇게염..
widnow.open (parent.윈도우네임.location.pathname);