Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ウィンドウサイズに基づいて100%の高さを取得しようとしています。
<script> $(document).ready(function(){ var contHeight = $(window).height(); $('#container').css("height",contHeight + "px"); }); </script>
ワーキングフィドル
http://jsfiddle.net/mzpa4/
また、試すことができます:
$(window).on('load resize',function(){ var contHeight = $(window).height(); $('#container').css("height",contHeight + "px"); });
@adeneoが提案したように、ユーザーがウィンドウのサイズを変更しても、高さがウィンドウの高さに固執するようにします
http://jsfiddle.net/mzpa4/3/show/