由于某种原因,jquery .load()在硬刷新后不起作用

时间:2011-03-16 10:23:23

标签: jquery

  

可能重复:
  jquery .load() doesn't work after hard refresh

我有一些代码,当页面加载时获取图像的高度,然后相应地调整其容器div的大小。这工作正常,除非它第一次加载页面或我用ctrl + f5进行硬刷新,然后它不起作用。我尝试过使用

$('#div img').load(function() {
// put the code here
});

但是我遇到了同样的问题。任何人都知道为什么会这样吗?

这是我的代码:

$(document).ready(function() {
   maxheight = 0;
   $('#venue #main-img img').each(function() {
      height = $(this).height();
      if(height > maxheight) {
         maxheight = height;
      }
      $(this).hide();
  });
  $('#venue #main-img').animate({ height: maxheight });
  $('#venue #main-img img').first().show();
});

0 个答案:

没有答案