不明白为什么我的 setInterval + jQuery 不起作用

Don't understand why my setInterval + jQuery doesn't work

总而言之,我正在尝试使用随机报价生成器。我的代码很简单...

var myQuotes = [

    {
    quote: "To err is human; to forgive, divine.",
    cite: "Alexander Pope"},

    {
    quote: "Reports of my death have been greatly exaggerated.",
    cite: "Mark Twain"} 

];

var randomQuote = Math.floor(Math.random() * myQuotes.length);

$('.quote').html(myQuotes[randomQuote].quote); // #1
$('.cite').html(myQuotes[randomQuote].cite); 

setInterval(function() {

    $('.quote').fadeOut();

    $('.quote').fadeIn().html(myQuotes[randomQuote].quote); // #2

}, 3000);

加载时,它显示 #1 很好,但 #2 似乎不起作用...它只是不断闪烁与之前相同的那个,即 #1 中的那个。我对此有什么不理解的地方?

您必须将 randomQuote 变量放入 setInterval 中,因此它会更新:

setInterval(function() {

    randomQuote = Math.floor(Math.random() * myQuotes.length);

    $('.quote, .cite').fadeOut("slow", function() {
        $('.quote').fadeIn("slow").html(myQuotes[randomQuote].quote);
        $('.cite').fadeIn("slow").html(myQuotes[randomQuote].cite);
    });

}, 3000);

http://jsfiddle.net/av1xg897/1/