我在firefox中使用window.scrollYMax来获取最大滚动,并使用window.scrollY查找我与页面底部的距离,以便我可以加载更多的Feed。问题是window.scrollYMax在firefox之外不起作用!救命啊!
答案 0 :(得分:2)
我认为您需要document.body.scrollHeight
答案 1 :(得分:1)
这些属性是特定于Firefox的。此页面详细说明了哪些浏览器支持以下内容:http://www.quirksmode.org/dom/w3c_cssom.html。
您可能正在寻找:
x.scrollWidth
x.scrollHeight
答案 2 :(得分:0)
以下代码对我很有用 -
<!DOCTYPE html>
<html>
<head>
<title>test</title>
</head>
<body>
<embed id="pdf" src="your-source-of-pdf" width="100%" height="" type='application/pdf'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
$(function () {
$('#pdf').attr('height', document.body.scrollHeight);
});
</script>
</body>
</html>