有些文件我无法获得文件的高度(将某些东西绝对放在最底部)。此外, padding-bottom on 似乎在这些页面上没有任何作用,但在高度将返回的页面上起作用。案例:
http://fandango.com
http://paperbackswap.com
在 Fandango 上
jQuery 的$(document).height();
返回正确值
document.height
返回 0
document.body.scrollHeight
返回 0
在 Paperback Swap 上:
jQuery 的$(document).height();
TypeError:$(document)
is null
document.height
返回不正确的值
document.body.scrollHeight
返回不正确的值
注意:如果那里有一些技巧,我有浏览器级别的权限。