묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
셀렉트 메뉴 링크 거는 방법 좀 알켜 주세요..
2002.10.21 10:55
위와 같이 셀렉트 폼을 사용해서 링크를 걸어줘야 하는데 어떻게 해야하는지요?
답변 부탁드립니다.
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>제목 없음</title>
<meta name="generator" content="Namo WebEditor v5.0">
<base target="_self">
<script language="JavaScript">
<!--
function namosw_goto_byselect(sel, targetstr)
{
var index = sel.selectedIndex;
if (sel.options[index].value != '') {
if (targetstr == 'blank') {
window.open(sel.options[index].value, 'win1');
} else {
var frameobj;
if (targetstr == '') targetstr = 'self';
if ((frameobj = eval(targetstr)) != null)
frameobj.location = sel.options[index].value;
}
}
}
// -->
</script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<form name="form">
<p><select size="1" OnChange="namosw_goto_byselect(this, 'parent.down')">
<option selected>-----메뉴--------</option>
<option value="http://suhwa.new21.org">수화연구회</option>
<option value="http://www.simmani.com/">심마니</option>
<option value="http://nzeo.com/">제로보드</option>
</select></p>
</form>
<p> </p>
</body>
</html>
-------------z2.htm----------------
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>제목 없음</title>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<p> </p>
</body>
</html>
------------z.htm-----------
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>이 페이지를 보려면, 프레임을 볼 수 있는 브라우저가 필요합니다.</title>
</head>
<frameset rows="1*, 1*">
<frame src="z1.htm" name="top" namo_target_frame="_self">
<frame src="z2.htm" name="down">
<noframes>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<p>이 페이지를 보려면, 프레임을 볼 수 있는 브라우저가 필요합니다.</p>
</body>
</noframes>
</frameset>
</html>
*********************************
z1.htm : 셀렉트폼 형식의 문서(프레임 이름 top)
z2.htm : 빈문서, z1.htm에서 선택한 사이트로 이동할곳 (프레임 이름 down)
z.htm : z1.htm과 z2.htm 문서를 표함한(프레임표시)문서
*********************************
이 3개문서를 같은 위치에 만드신 후 보세요
그럼 무슨 뜻인지 알수 있을 겁니다.
중요한 건 z1.htm문서 입니다.
그냥 똑 같이 하시고
<option value="http://nzeo.com/">제로보드
</option>
이 부분만 계속 추가 하심 됩니다.