"HTML 프레임셋 영역 크기 조정"의 두 판 사이의 차이

35번째 줄: 35번째 줄:
</source>
</source>


==main.php==
==home.php==
<source lang='html5'>
<source lang='html5'>
메뉴
<!DOCTYPE html>
<meta charset="utf-8" />
</source>
</source>



2013년 3월 15일 (금) 07:56 판

1 개요

HTML 프레임셋 영역 크기 조정

2 index.php

<!DOCTYPE html>
<meta charset="utf-8" />
<title>웹사이트 제목</title>
<frameset id='main_frameset' cols="200,*" noresize>
    <frame name="menu" id="menu" src="menu.php">
    <frame name="main" id="main" src="home.php">
</frameset>

3 menu.php

<input type='button' onclick='resize_toggle()' value='↔'>
<div style='width:160px'>
<p><a href="home.php" target="main">HOME</a></p>
<p><a href="page1.php" target="main">1페이지</a></p>
<p><a href="page2.php" target="main">2페이지</a></p>
</div>
<script>
function resize_toggle() {
        var obj = parent.document.getElementById('main_frameset');
        if(obj.cols == '50,*')obj.cols='180,*';
        else obj.cols='50,*';
}
</script>

4 home.php

<!DOCTYPE html>
<meta charset="utf-8" />

5 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}