웹 페이지 레이아웃에 DIV와 CSS를 사용할 때 DIV의 적응형 높이와 적응형 너비는 매우 일반적인 문제입니다.
페이지의 전체적인 아름다움을 보장하려면 두 개 이상의 레이어의 높이/폭이 일관되어야 합니다.
왼쪽 및 오른쪽 적응형 높이 일치 Jquery
1
3
5
2
🎜>< /div>
;script type= "text/javascript">
$(function(){
var heightLeft= $("#Left").height();
var heightRight= $("#Right" ).height( );
if (heightLeft > heightRight)
{
$("#Right").height(heightLeft)
}
else
{
$(" #Left").height(heightRight);
}
})
DIV 높이 적응형 화면 js
< ;/div>
dsafsafsafsafsafdsa
<script> <br>window.onload=function (){ <br>함수 auto_height() <br> { <br>//var h= document.documentElement.clientHeight-200; <br>//var high = document.getElementById("box") <br>//high.style.height =h "px"; <br>document.getElementById("box").style.height=document.documentElement.clientHeight-200 "px"; <br>} <br>auto_height() <br>onresize=auto_height ; <br>} <br></script>