-1
有沒有人知道是否可以通過css或js來捕獲twitter-bootstrap navbar-fixed-top正在滾動?Twitter-Bootstrap當navbar-fixed-top正在滾動時捕獲
我想我應該檢查當用戶滾動頁面,但如果有可能我想獲得它更容易
有沒有人知道是否可以通過css或js來捕獲twitter-bootstrap navbar-fixed-top正在滾動?Twitter-Bootstrap當navbar-fixed-top正在滾動時捕獲
我想我應該檢查當用戶滾動頁面,但如果有可能我想獲得它更容易
$(window).scroll(function() {
if($(window).scrollTop() + $(window).height() == $(document).height()) {
alert("bottom!");
}
});
提斯其實是在這裏找到:How do I use JQuery to detect if a user scrolls to the bottom of the page?
你可以改變它檢測到,所以你選擇在哪裏。
是的,這應該工作 – sbaaaang
@okok很高興我能幫到你 – Binary101010