묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
링크거는 방법이요
2003.05.27 23:26
왼쪽에 메뉴 오른쪽에 제로보드거든요
그래서 왼쪽 메뉴에 링크를 하면 오른쪽에 게시판이 나오도록 하려고 하는데
링크를 시키면 새창으로 뜨더라구요
오른쪽에 뜨게 하려면 어떻게 해야 하나요??
제가 걸었던 링크 방법입니다
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>제목 없음</title>
<meta name="generator" content="Namo WebEditor v5.0">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" background="background.gif">
<table cellpadding="0" cellspacing="0" width="780">
<tr>
<td width="180" height="500">
<p><img src="http://comdosa.com/momenent/0928.jpg" width="180" height="500" border="0" usemap="#ImageMap1"></p>
</td>
<td width="600" valign="top">
<p><iframe src="http://comdosa.com/momenent/bbs/zboard.php?id=board"
name="1" width="500" height="500" marginwidth="0" marginheight="0"
frameborder="0" target=1></p>
</td>
</tr>
</table>
<map name="ImageMap1">
<area shape="rect" coords="8, 6, 131, 30" href="http://comdosa.com/momenent/bbs/zboard.php?id=board" on-Focus='this.blur()'>
</map></body>
</html>
그래서 왼쪽 메뉴에 링크를 하면 오른쪽에 게시판이 나오도록 하려고 하는데
링크를 시키면 새창으로 뜨더라구요
오른쪽에 뜨게 하려면 어떻게 해야 하나요??
제가 걸었던 링크 방법입니다
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>제목 없음</title>
<meta name="generator" content="Namo WebEditor v5.0">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" background="background.gif">
<table cellpadding="0" cellspacing="0" width="780">
<tr>
<td width="180" height="500">
<p><img src="http://comdosa.com/momenent/0928.jpg" width="180" height="500" border="0" usemap="#ImageMap1"></p>
</td>
<td width="600" valign="top">
<p><iframe src="http://comdosa.com/momenent/bbs/zboard.php?id=board"
name="1" width="500" height="500" marginwidth="0" marginheight="0"
frameborder="0" target=1></p>
</td>
</tr>
</table>
<map name="ImageMap1">
<area shape="rect" coords="8, 6, 131, 30" href="http://comdosa.com/momenent/bbs/zboard.php?id=board" on-Focus='this.blur()'>
</map></body>
</html>
댓글 2
-
RedEye(kaist)
2003.05.28 03:42
-
스티치
2003.05.28 13:26
아이프레임안에 게시판을 나타내려고 하시는거 맞죠??
그렇다면 이미지 맵에서 target을 아이프레임 네임으로 주어야 하는데..
현재 질문하신분께서는 아이프레임에 네임을 만들지 않으셨네요.
<iframe name=네임 src="http://comdosa.com/momenent/bbs/zboard.php?id=board"
name="1" width="500" height="500" marginwidth="0" marginheight="0"
frameborder="0"> -> target 은 필요없습니다. 빼세요
저런식으로 name 을 추가하시고 "네임" 이라 적은 것은 영문으로 맘에 드시는걸로 바꾸어 주세요.
<area shape="rect" coords="8, 6, 131, 30" href="http://comdosa.com/momenent/bbs/zboard.php?id=board" target=네임 on-Focus='this.blur()'>
target 을 아까 아이프레임에 주었던 name 값으로 주시면 됩니다.
<iframe src="http://링크주소" width="500" height="500" marginwidth="0" marginheight="0"
frameborder="0" name="타겟이름">
<img src="이미지.jpg" width="넓이" height="높이" border="0" usemap="#ImageMap1">
<map name="ImageMap1">
<area shape="rect" coords="000, 000, 000, 000" href="http://링크주소" target="타겟이름">
</map>