gpt4 book ai didi

jquery - 为什么 jQuery 对 div 的高度返回 null?

转载 作者:行者123 更新时间:2023-12-03 22:09:53 25 4
gpt4 key购买 nike

$(document).ready(function(){

function getDocumentHeight()
{
// What's the page height?
var height = $('#mainbody').height();
alert(height);
...
getDocumentHeight(); }

jQuery 不断提醒 null 我的 #mainbody div 的高度。我不明白为什么,它至少应该是 500px 左右。

最佳答案

如果动态加载内容,元素可能还没有高度。尝试将此代码移动到页面底部、正上方,看看是否可以解决。

更新:尝试将代码放入

$(window).load(function() {
var height = $('#mainbody').height();
alert(height);
});

在你之外

$(document).ready();

关于jquery - 为什么 jQuery 对 div 的高度返回 null?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3680811/

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