gpt4 book ai didi

javascript - .body.scrollHeight 在 Firefox 中不起作用

转载 作者:可可西里 更新时间:2023-11-01 02:55:15 26 4
gpt4 key购买 nike

.body.scrollHeight 在 Firefox 中不起作用。

参见:http://jsfiddle.net/gjrowe/X63KR/

正确的语法是什么?

最佳答案

此问题与...的线程具有相同的根本问题... Dynamically define iframe height based on window size (NOT CONTENT)

了解该线程中的问题将为该问题提供解决方案。

基本上,不是使用.body.scrollHeight,而是添加这段代码...

function getDocHeight() {
var D = document;
return Math.max(
Math.max(D.body.scrollHeight, D.documentElement.scrollHeight),
Math.max(D.body.offsetHeight, D.documentElement.offsetHeight),
Math.max(D.body.clientHeight, D.documentElement.clientHeight)
);
}

答案来自:http://james.padolsey.com/javascript/get-document-height-cross-browser/

关于javascript - .body.scrollHeight 在 Firefox 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15932650/

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