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.
$(window).height()ブラウザのビューポート ウィンドウの高さを返すため$(window).width()に使用され、ブラウザ ウィンドウの幅に使用されていました。
$(window).height()
$(window).width()
$(window).height()は と同じ値$(document).height()、つまりページ全体の高さを返すだけになりました。
$(document).height()
jqueryでビューポートサイズを取得する適切な方法は何ですか?
ビューポートの幅と高さを取得するには:
var viewportWidth = $(window).width(); var viewportHeight = $(window).height();
ページのサイズ変更イベント:
$(window).resize(function() { var viewportWidth = $(window).width(); var viewportHeight = $(window).height(); });