프레임셋
<html>
<head>
<title></title>
</head>
<frameset rows="27,*" border="0">
    <frame src="1.html" name="top" noresize scrolling="no" marginwidth="0"  marginheight="0" border=1>
    <frame src="2.html" name="content" scrolling="auto" marginwidth="0"  marginheight="0" border=1>
</frameset>
</html>

프레임 상단 페이지
<html>
<head>

<script language="javascript1.2">
var texp=27; //기본높이
function expand_top() {
if(texp==58) { //확장높이
   top.document.body.rows = "27,*";  //기본일때 프레임간격
   texp = 27 //기본높이
} else {
   top.document.body.rows = "58,*";  //확장일때 간격
   texp = 58 //확장높이
}
}
</script>
</head>
<body>
<a href='javascript:expand_top();'>페이지확장</a></font>
<br><br>
늘리기!
</body>

</html>


프레임 하단 페이지는
<html>
<body bgcolor="black">
</body>
</html>
Posted by 알 수 없는 사용자
,