我想每當滾動頁面以放置一個頁面的底部。這就像“固定位置”但我不能'“的位置是:固定的”CSS為我的許多客戶端'的瀏覽器無法支持。 我發現jQuery的可以得到當前視口的頂部位置,但我怎么能得到滾動視口的底部? 所以我問怎么知道:$(窗口)scrollBottom()
1.
var scrollBottom = $(window).scrollTop() + $(window).height();
2. 我要說的是一個scrollBottom作為scrollTop的直接對立面應該是:
var scrollBottom = $(document).height() - $(window).height() - $(window).scrollTop();
這里是一個丑陋的小測試工作
// SCROLLTESTER START // $('<h1 id="st" style="position: fixed; right: 25px; bottom: 25px;"></h1>').insertAfter('body'); $(window).scroll(function () { var st = $(window).scrollTop(); var scrollBottom = $(document).height() - $(window).height() - $(window).scrollTop(); $('#st').replaceWith('<h1 id="st" style="position: fixed; right: 25px; bottom: 25px;">scrollTop: ' + st + '<br>scrollBottom: ' + scrollBottom + '</h1>'); }); // SCROLLTESTER END //
3. 。variantscrollBottom=$(-$(窗口)的高度()-$(窗口)的scrollTop(); 我認為這是連擊讓底部滾動
本文標題 :jQuery的:$(窗口)的scrollTop(),但沒有$(窗口)scrollBottom()