$(document).ready(function(){ function getDocumentHeight() { // What's the page height? var height = $('#mainbody').height(); alert(height); ... getDocumentHeight(); }
jQuery一直警告我的#mainbody div的高度为null.我不明白为什么,至少应该是500px左右.
$(document).ready(function(){ function getDocumentHeight() { // What's the page height? var height = $('#mainbody').height(); alert(height); ... getDocumentHeight(); }
jQuery一直警告我的#mainbody div的高度为null.我不明白为什么,至少应该是500px左右.