Jquery代码在IE6中不起作用

时间:2013-07-04 05:52:50

标签: jquery internet-explorer-6

    <script type="text/javascript">

    jQuery(document).ready(function() {
     if (!$.browser.msie) {

    jQuery('.pbx-shop-prod-block').css({visibility: 'visible', opacity: 0}).each(function(index) {
      var el = $(this);
      function showthis() {
        el.animate({opacity: 1}, 200);
      }
      setTimeout(showthis, index * 100);
    });
  } else {
    jQuery('.pbx-shop-prod-block').css({visibility: 'visible'});
  }

  jQuery('.pbx-shop-prod-block').hover(function() {
    $('.pbx-shop-prod-block').removeClass('hover');
    $(this).addClass('hover');
    $(this).find('.pbx-shop-prod-info').stop().animate({bottom: '-20px'}, 500, 'easeOutCubic');
  },
  function() {
    $('.pbx-shop-prod-block').removeClass('hover');
    $(this).find('.pbx-shop-prod-info').stop().animate({bottom: '-70px'}, 500, 'easeOutCubic');
  });

});

</script>    

以下代码在IE 6中不起作用,产生以下错误:对象不支持此属性或方法。它适用于所有其他浏览器,如Opera,Safari,Chrome,Firefox。动画在IE6显示静态页面时不起作用。

0 个答案:

没有答案