gpt4 book ai didi

javascript - 计算从底部到当前位置的距离

转载 作者:行者123 更新时间:2023-11-28 12:33:47 24 4
gpt4 key购买 nike

我正在尝试计算从窗口底部到当前滚动位置的距离。我使用了以下代码(LIVE DEMO):-

 $(window).scroll(function(){
var height= $(document).height() - $(document).scrollTop();
$(".height").html(height);
});

滚动到底部时的输出必须是0。但是,输出大于 400。请告诉我如何解决它。提前致谢。任何帮助将不胜感激。

最佳答案

就这样... fiddle

 $(window).scroll(function () {
//for fiddle
var height = $(document).height() - $(window).height() - $(window).scrollTop();

//to test on real website
//var height = $(document).height() - $(window).height()
$(".height").html(height);
});

关于javascript - 计算从底部到当前位置的距离,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19323456/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com