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();