묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
프레임에 관해서.. 궁금...증
2003.01.22 00:15
안녕하세요
궁금한게 하나있는데...요
링크를 클릭하면
한번에 두개의 프레임이 동시에 바뀐다거나
아니면 한쪽 프레임이 넘어가면 다른 한쪽도 같이 넘어가게 하게 할순 없는지요??
궁금해서요..
아래는 어떤분이 갈켜 주신 자바스크립트인데 안되더군요 -_-;;
꼭 해보고 싶은게 있어서... 제대로된 방법을... 갈켜주세효오오...
부탁드립니다..
------------------------------------------------------------------------
<frameset>
<frame name="leftFrame">
<frame name="rightFrame">
</frameset>
<a href="javascript:changeFrames('c1.htm','c2.htm');">링크</a>
<javascript>
function changeFrames(target1,target2)
{
//프레임 Name.location.href 로 해주시면 됩니다..
leftFrame.location.href=target1;
rightFrame.location.href=target2;
}
------------------------------------------------------------------------
궁금한게 하나있는데...요
링크를 클릭하면
한번에 두개의 프레임이 동시에 바뀐다거나
아니면 한쪽 프레임이 넘어가면 다른 한쪽도 같이 넘어가게 하게 할순 없는지요??
궁금해서요..
아래는 어떤분이 갈켜 주신 자바스크립트인데 안되더군요 -_-;;
꼭 해보고 싶은게 있어서... 제대로된 방법을... 갈켜주세효오오...
부탁드립니다..
------------------------------------------------------------------------
<frameset>
<frame name="leftFrame">
<frame name="rightFrame">
</frameset>
<a href="javascript:changeFrames('c1.htm','c2.htm');">링크</a>
<javascript>
function changeFrames(target1,target2)
{
//프레임 Name.location.href 로 해주시면 됩니다..
leftFrame.location.href=target1;
rightFrame.location.href=target2;
}
------------------------------------------------------------------------
function changeFrames(target1,target2)
{
parent.leftFrame.location.href=target1;
parent.rightFrame.location.href=target2;
}
안되면 parent. 을 top.으로.. 해보세요..