admin管理员组文章数量:1345419
I'm running an if function when the user gets to the bottom of the page which works great as is like this
if($(window).scrollTop() + $(window).height() == $(document).height()) {}
However I want it to run slightly before the bottom - about 300px before.
I've tried
if($(window).scrollTop() + $(window).height() + 300 == $(document).height()) {}
AND
if($(window).scrollTop() + $(window).height() == $(document).height() -300) {}
and all other variations to no avail.
I've also tried putting variables in.
var plusheight = 300;
if($(window).scrollTop() + $(window).height() + plusheight == $(document).height()) {}
if($(window).scrollTop() + $(window).height() + $plusheight == $(document).height()) {}
if($(window).scrollTop() + $(window).height() + "plusheight" == $(document).height()) {}
What am I doing wrong?
I'm running an if function when the user gets to the bottom of the page which works great as is like this
if($(window).scrollTop() + $(window).height() == $(document).height()) {}
However I want it to run slightly before the bottom - about 300px before.
I've tried
if($(window).scrollTop() + $(window).height() + 300 == $(document).height()) {}
AND
if($(window).scrollTop() + $(window).height() == $(document).height() -300) {}
and all other variations to no avail.
I've also tried putting variables in.
var plusheight = 300;
if($(window).scrollTop() + $(window).height() + plusheight == $(document).height()) {}
if($(window).scrollTop() + $(window).height() + $plusheight == $(document).height()) {}
if($(window).scrollTop() + $(window).height() + "plusheight" == $(document).height()) {}
What am I doing wrong?
Share asked May 2, 2012 at 7:01 JamesJames 3,2934 gold badges43 silver badges57 bronze badges 2- 3 It's hard to get exactly 300px above the bottom... – user1150525 Commented May 2, 2012 at 7:03
-
2
It's hard to a user scrolls exactly to -300px from bottom. You should use greater then
>
or less then<
. – Emre Erkan Commented May 2, 2012 at 7:04
1 Answer
Reset to default 11Use an inequality. It's quite possible the user's scrolltop is jumping right past the exact value you're paring with.
if($(window).scrollTop() + $(window).height() >= $(document).height() -300) {}
本文标签:
版权声明:本文标题:javascript - Add or Subtracting into $(window).scrollTop + $(window).height == $(document).height() - Scrolled to bottom of page 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743771801a2536257.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论