-2

jQuery コードの何が間違っているのか理解できません。

function BTTS(){

    $('#banner-title span').fadeOut('fast',function() {
        $('#banner-title span').replaceWith('Rental Program');
    };
}

$(document).ready(function(){
    // RUN BTTS FUNCTION
    setInterval('BTTS()', 7500);
}
4

1 に答える 1

2

コードに構文エラーがあります

function BTTS(){

    $('#banner-title span').fadeOut('fast',function() {
        $('#banner-title span').replaceWith('Rental Program');
    }); //<-- missing ')' here
}

$(document).ready(function(){
    // RUN BTTS FUNCTION
    setInterval('BTTS()', 7500);
}); //<-- missing ')' here

更新されたソリューション

var titles = ['My Title 1', 'My Title 2'], titleFlag = 0;
function BTTS(){
    $('#banner-title span').fadeOut('fast',function() {
        titleFlag = (titleFlag + 1) % titles.length;
        $('#banner-title span').html(titles[titleFlag]).show();
    }); //<-- missing ')' here
}

$(document).ready(function(){
    // RUN BTTS FUNCTION
    setInterval(BTTS, 2000);
}); //<-- missing ')' here

デモ:フィドル

于 2013-05-27T03:42:50.817 に答える