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.
ブラウザー ウィンドウのサイズを変更するときに、body 要素の高さと幅を取得する必要があります。
JQueryを使用してこの問題を解決するのを手伝ってください
window オブジェクトで resize イベントを使用します。
$(window).resize(function(){ var width = $(document).width(), // or $(window).width() height = $(document).height(); // or $(window).height() });