프로그램 질문이요!!!

이미지 처럼요..
1메뉴를 클릭하면 그것에 대한 내용이 나오고..
2메뉴를 클릭하면 내용이 나오게 하는 프로그램 가르켜 주세요..
div를 이용하여 하는거 같은데..
자바스크립트에서 어떻게 해야하는지.. 모르겟어요..ㅠ.ㅠ
|

댓글 2개

<html>
<head>
<title>div Tab menu</title>
</head>

<body>
<script language="JavaScript">
function tabmenu(i) {
if(i==1) {
document.getElementById("tab01").style.display = 'block';
document.getElementById("tab02").style.display = 'none';
document.getElementById("tab03").style.display = 'none';
}
else if(i==2) {
document.getElementById("tab01").style.display = 'none';
document.getElementById("tab02").style.display = 'block';
document.getElementById("tab03").style.display = 'none';
}
else if(i==3) {
document.getElementById("tab01").style.display = 'none';
document.getElementById("tab02").style.display = 'none';
document.getElementById("tab03").style.display = 'block';
}
}
</script>
<div style="width:1000px;">
<div style="folat:right; text-align:right;">
<a href="javascript:tabmenu(1);">메뉴 1</a>
<a href="javascript:tabmenu(2);">메뉴 2</a>
<a href="javascript:tabmenu(3);">메뉴 3</a>
</div>
<p />
<div id="tab01" style="display:block; border:1px solid black; height:50px;">
메뉴 1의 게시물
</div>
<div id="tab02" style="display:none; border:1px solid black; height:50px;">
메뉴 2의 게시물
</div>
<div id="tab03" style="display:none; border:1px solid black; height:50px;">
메뉴 3의 게시물
</div>
</div>
</body>
</html>


이렇게 하면 되는지 모르겠습니다.

일단 메뉴3번까지만 해 보았습니다..^^
와우~~ 고마워요~~~ 몇일 끙끙댓었는뎅.. 고맙습니다
댓글을 작성하시려면 로그인이 필요합니다.

자유게시판

+
제목 글쓴이 날짜 조회
17년 전 조회 2,046
17년 전 조회 2,286
17년 전 조회 2,678
17년 전 조회 2,001
17년 전 조회 2,158
17년 전 조회 2,461
17년 전 조회 2,002
17년 전 조회 2,072
17년 전 조회 1,805
17년 전 조회 1,840
17년 전 조회 2,016
17년 전 조회 1,856
17년 전 조회 2,011
17년 전 조회 2,332
17년 전 조회 2,034
17년 전 조회 2,578
17년 전 조회 2,017
17년 전 조회 1,858
17년 전 조회 2,333
17년 전 조회 2,037
17년 전 조회 1,970
17년 전 조회 2,005
17년 전 조회 2,171
17년 전 조회 2,062
17년 전 조회 2,066
17년 전 조회 2,033
17년 전 조회 2,380
17년 전 조회 2,175
17년 전 조회 1,980
17년 전 조회 1,876