前端之家收集整理的这篇文章主要介绍了
jQuery为元素高度返回null?为什么?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$(
文件).就绪(
函数(){
function getDocumentHeight()
{
// What's the page height?
var height = $('#mainbody').height();
alert(height);
...
getDocumentHeight();
jQuery为我的#mainbody div的高度保持“null”.我不明白为什么,至少应该是500px左右.
谢谢.
如果
内容正在动态加载,这些元素可能还没有高度.尝试将此
代码移到
页面的
底部,直接在上面,看看是否
解决.
更新:
尝试放置你的代码
$(window).load(function() {
var height = $('#mainbody').height();
alert(height);
});
在你外面
$(document).ready();
原文链接:https://www.f2er.com/jquery/179307.html