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

发布于 2024-09-18 03:37:54 字数 327 浏览 5 评论 0原文

$(document).ready(function(){

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

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

$(document).ready(function(){

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

jQuery keeps alerting null for the height of my #mainbody div. I don't get why, it should at least be 500px or so.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

尹雨沫 2024-09-25 03:37:54

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

更新:
尝试将您的代码放在

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

您的外部

$(document).ready();

If the content is being loaded dynmically, the elements may not have a height yet. Try moving this code to the bottom of the page, directly above and see if that resolves.

UPDATE:
Try placing your code in

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

outside of your

$(document).ready();
浊酒尽余欢 2024-09-25 03:37:54

如果您使用模板进行标记,例如使用 Angular 或 Ember,请使用脚本标签并从模板调用脚本。

<script type="text/javascript" src="/js/script.js"></script>

If you are using a template for your markup for example with angular or ember use the script tag and call the script from the template.

<script type="text/javascript" src="/js/script.js"></script>
孤者何惧 2024-09-25 03:37:54

100 毫秒的延迟对我来说效果很好。毫不拖延地不工作。

setTimeout(function(){
    var imgWidth = $('#id').width();
    var imgHeight = $('#id').height();
    console.log(imgWidth);
    console.log(imgHeight);
}, 100);

With 100ms delay works well for me. Without delay not working.

setTimeout(function(){
    var imgWidth = $('#id').width();
    var imgHeight = $('#id').height();
    console.log(imgWidth);
    console.log(imgHeight);
}, 100);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文