0

我不是 Javascripter,但我的 HTML 页面上有两个明显冲突的 Javascript,我已经通过论坛很好地阅读并通过谷歌很好地查看,但无法找出任何足够的解决方案,所以我希望有人这里也许可以帮助我用他们更丰富的经验。我在 IE7 和 IE8 中得到“预期功能”,IE 的更高版本很好,Firefox、Safari、Chrome 和 Opera 也很好。

第一个脚本:

$(window).load(function(){
  $('.flexslider').flexslider({
    animation: "fade",
    start: function(slider){
      $('body').removeClass('loading');
    }
  });
});

第二个脚本:

$(document).ready(function() {

var quotes = $(".quotes");
var quoteIndex = -1;

function showNextQuote() {
++quoteIndex;
quotes.eq(quoteIndex % quotes.length)
    .fadeIn(2000)
    .delay(2000)
    .fadeOut(2000, showNextQuote);
}

showNextQuote();

})();

我将非常感谢您在这方面给我的任何指示。

4

1 回答 1

0

您可能正在使用不支持 IE 6,7 或 8 的 jquery 版本 2.x。使用版本 1.x 而不是 2.x

于 2014-03-23T06:01:03.210 回答