jquery画面高さの取得

490 ワード

$(function(){
 
 $("#left_all").css("height", $(window).height());
 
 var left_content = $("#left_content").height()
 alert(left_content)
 
 if ($("#left_content").height()>$(window).height() )   
 
   {
   $("#left_all").css("overflow","auto");   
   }
 else if ($("#left_content").height()<$(window).height() )  
   {
   $("#left_all").css("overflow","hidden"); 
   }
})