javascript计算滚动条高度

时间:2013-08-25 12:20:02

标签: javascript scrollbar percentage

我在这里阅读了一些关于如何获得滚动条高度的线程,以及“使用百分比”的答案。但最好的计算方法是什么,没有错误?

数学“错误”已经知道,例如10/15 = 0.666666,这个问题会返回奇怪的滚动条高度......所以最好的方法是避免这种情况,并获得

的百分比

height =来自scrollHeight的x%?

谢谢。

1 个答案:

答案 0 :(得分:-2)

$(window).height();   // returns height of browser viewport
$(document).height(); // returns height of HTML document
$(window).width();   // returns width of browser viewport
$(document).width(); // returns width of HTML document

screen.height; //for screen height
screen.width; //for screen width

在你的情况下

$(window).height(); // length y s.bar
$(window).width(); // length x s.bar